aboutsummaryrefslogtreecommitdiff
path: root/src/core
AgeCommit message (Collapse)Author
2014-12-14Merge pull request #273 from bunnei/more-skyeye-fixesbunnei
ARM: Pull some SkyEye fixes from 3dmoo.
2014-12-14ARM: Pull some SkyEye fixes from 3dmoo.bunnei
2014-12-14Clean up armdefs.hLioncash
2014-12-13MemMap: Added AXI_WRAM & SHARED_PAGE along with other stuffpurpasmart96
Got rid of I/O address's since the I/O addresses range's overlap with other address's types such as vram, these I/O addresses need to be done in an different way.
2014-12-13Kernel/Semaphores: Fixed buildSubv
2014-12-13Kernel/Semaphore: Small style changeSubv
2014-12-13Kernel/Semaphores: Invert the available count checking.Subv
Same semantics, idea by @yuriks
2014-12-13Kernel/Semaphores: Addressed some issues.Subv
2014-12-13Semaphore: Removed an unneeded functionSubv
2014-12-13Semaphores: Addressed some style issuesSubv
2014-12-13Semaphore: Implemented the initial_count parameter.Subv
2014-12-13SVC: Implemented ReleaseSemaphore.Subv
This behavior was tested on hardware, however i'm still not sure what use the "initial_count" parameter has
2014-12-13SVC: Implemented svcCreateSemaphoreSubv
ToDo: Implement svcReleaseSemaphore * Some testing against hardware needed
2014-12-13kernel: Remove unused log argumentsLioncash
2014-12-13Add configurable per-class log filteringYuri Kunde Schlesner
2014-12-13Convert old logging calls to new logging macrosYuri Kunde Schlesner
2014-12-13New logging systemYuri Kunde Schlesner
2014-12-12Merge pull request #267 from bunnei/apt-shared-fontbunnei
APT shared font loading
2014-12-12APT_U: Added GetSharedFont service function.bunnei
2014-12-12DSP: Added stub for ReadPipeIfPossible.bunnei
2014-12-12MemMap: Renamed "GSP" heap to "linear", as this is not specific to GSP.bunnei
- Linear simply indicates that the mapped physical address is always MappedVAddr+0x0C000000, thus this memory can be used for hardware devices' DMA (such as the GPU).
2014-12-10Merge pull request #256 from Subv/mutexbunnei
Kernel/Mutex: Properly lock the mutex when a thread enters it
2014-12-10CFG:U: Store country codes as u16 instead of char pointers, and return the ↵Emmanuel Gil Peyrot
correct error in GetCountryCodeID.
2014-12-09GSP: Trigger GPU interrupts at more accurate locations.bunnei
2014-12-09GSP: Updated TriggerCmdReqQueue to return success code.bunnei
2014-12-09GSP: Updated RegisterInterruptRelayQueue to return expected magic number.bunnei
2014-12-09GPU: Fixed bug in command list size decoding.bunnei
2014-12-09Remove unused NDMA moduleYuri Kunde Schlesner
2014-12-08Merge pull request #217 from archshift/cmd_buffbunnei
Log the cmd_buff arguments when citra comes across an unimplemented function
2014-12-08Thread: Fixed to wait on address when in arbitration.bunnei
2014-12-08Merge pull request #244 from bunnei/cleanup-memmapbunnei
MemMap: Updated memory map to subtract base address instead of mask.
2014-12-08Merge pull request #263 from lioncash/sasxbunnei
Fix emulation of SASX and SSAX instructions.
2014-12-08Merge pull request #259 from ichfly/masterbunnei
Loader: Add 3DSX support
2014-12-08Merge pull request #264 from Subv/filesbunnei
Kernel/File: Fixed file read/write hwtests
2014-12-08Merge pull request #260 from archshift/opendirbunnei
Make OpenDirectory fail if the directory doesn't exist
2014-12-08Kernel/File: Fixed file read/write hwtestsSubv
The 3DS allows the user to read from files opened with the Write access modifier, even if he did not specify the Read access modifier. Open the files in binary mode so that we can prevent CR/LF problems in Windows, where a line-end is replaced by these two bytes instead of just 0xA, this was causing problems with the GetSize test
2014-12-08armemu: Fix SSAXLioncash
2014-12-08Loader: Add 3DSX supportichfly
2014-12-08armemu: Fix SASXLioncash
2014-12-07armemu: Fix parenthesis warnings regarding bitwise opsLioncash
2014-12-07Make OpenDirectory fail if the directory doesn't existarchshift
This is in line with what the hardware itself does. It does this by splitting the initial directory opening into Directory.Open(), which will return false if a stat fails. Then, Archive::OpenDirectory will return nullptr, and archive.cpp will return an error code .
2014-12-07Mutex: Remove some forward declarationsSubv
Moved Mutex::WaitSynchronization to the end of the file.
2014-12-07Mutex: Release all held mutexes when a thread exits.Subv
2014-12-07Merge pull request #245 from rohit-n/null-nullptrbunnei
Change NULLs to nullptrs.
2014-12-05Mutex: Properly lock the mutex when a thread enters itSubv
Also resume only the next immediate thread waiting for the mutex when it is released, instead of resuming them all.
2014-12-04Merge pull request #250 from Subv/cbranch_2bunnei
SVC: Implemented GetThreadId.
2014-12-04Merge pull request #222 from archshift/renamexyzbunnei
Implemented RenameFile and RenameDirectory in FS:USER
2014-12-04Merge pull request #248 from lioncash/kernelbunnei
Misc minor kernel-related changes.
2014-12-04Threads: Remove a redundant function.Subv
Use the next_thread_id variable directly.
2014-12-04Threads: Implemented a sequential thread idSubv