summaryrefslogtreecommitdiff
path: root/src/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
* kernel: Remove unused log argumentsGravatar Lioncash2014-12-131-3/+3
|
* Add configurable per-class log filteringGravatar Yuri Kunde Schlesner2014-12-131-1/+3
|
* Convert old logging calls to new logging macrosGravatar Yuri Kunde Schlesner2014-12-1340-385/+336
|
* New logging systemGravatar Yuri Kunde Schlesner2014-12-131-0/+1
|
* Merge pull request #267 from bunnei/apt-shared-fontGravatar bunnei2014-12-125-66/+132
|\ | | | | APT shared font loading
| * APT_U: Added GetSharedFont service function.Gravatar bunnei2014-12-121-34/+100
| |
| * MemMap: Renamed "GSP" heap to "linear", as this is not specific to GSP.Gravatar bunnei2014-12-124-32/+32
| | | | | | | | - 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).
* | DSP: Added stub for ReadPipeIfPossible.Gravatar bunnei2014-12-121-1/+45
|/
* Merge pull request #256 from Subv/mutexGravatar bunnei2014-12-103-37/+67
|\ | | | | Kernel/Mutex: Properly lock the mutex when a thread enters it
| * Mutex: Remove some forward declarationsGravatar Subv2014-12-071-16/+15
| | | | | | | | Moved Mutex::WaitSynchronization to the end of the file.
| * Mutex: Release all held mutexes when a thread exits.Gravatar Subv2014-12-073-22/+56
| |
| * Mutex: Properly lock the mutex when a thread enters itGravatar Subv2014-12-051-12/+9
| | | | | | | | Also resume only the next immediate thread waiting for the mutex when it is released, instead of resuming them all.
* | CFG:U: Store country codes as u16 instead of char pointers, and return the ↵Gravatar Emmanuel Gil Peyrot2014-12-101-44/+48
| | | | | | | | correct error in GetCountryCodeID.
* | GSP: Trigger GPU interrupts at more accurate locations.Gravatar bunnei2014-12-091-7/+6
| |
* | GSP: Updated TriggerCmdReqQueue to return success code.Gravatar bunnei2014-12-091-0/+3
| |
* | GSP: Updated RegisterInterruptRelayQueue to return expected magic number.Gravatar bunnei2014-12-091-1/+4
| |
* | GPU: Fixed bug in command list size decoding.Gravatar bunnei2014-12-093-4/+3
| |
* | Remove unused NDMA moduleGravatar Yuri Kunde Schlesner2014-12-094-88/+0
| |
* | Merge pull request #217 from archshift/cmd_buffGravatar bunnei2014-12-081-12/+12
|\ \ | | | | | | Log the cmd_buff arguments when citra comes across an unimplemented function
| * | Log the cmd_buff arguments when citra comes across an unimplemented functionGravatar archshift2014-11-241-12/+12
| | |
* | | Thread: Fixed to wait on address when in arbitration.Gravatar bunnei2014-12-083-11/+31
| | |
* | | Merge pull request #244 from bunnei/cleanup-memmapGravatar bunnei2014-12-082-31/+21
|\ \ \ | | | | | | | | MemMap: Updated memory map to subtract base address instead of mask.
| * | | MemMap: Updated memory map to subtract base address instead of mask.Gravatar bunnei2014-12-032-31/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - More readable, a little less error prone. Conflicts: src/core/mem_map.h src/core/mem_map_funcs.cpp
* | | | Merge pull request #263 from lioncash/sasxGravatar bunnei2014-12-081-4/+4
|\ \ \ \ | | | | | | | | | | Fix emulation of SASX and SSAX instructions.
| * | | | armemu: Fix SSAXGravatar Lioncash2014-12-081-1/+1
| | | | |
| * | | | armemu: Fix SASXGravatar Lioncash2014-12-081-1/+1
| | | | |
| * | | | armemu: Fix parenthesis warnings regarding bitwise opsGravatar Lioncash2014-12-071-4/+4
| | | | |
* | | | | Merge pull request #259 from ichfly/masterGravatar bunnei2014-12-085-0/+278
|\ \ \ \ \ | | | | | | | | | | | | Loader: Add 3DSX support
| * | | | | Loader: Add 3DSX supportGravatar ichfly2014-12-085-0/+278
| |/ / / /
* | | | | Merge pull request #264 from Subv/filesGravatar bunnei2014-12-081-3/+6
|\ \ \ \ \ | | | | | | | | | | | | Kernel/File: Fixed file read/write hwtests
| * | | | | Kernel/File: Fixed file read/write hwtestsGravatar Subv2014-12-081-3/+6
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | | | Merge pull request #260 from archshift/opendirGravatar bunnei2014-12-087-3/+40
|\ \ \ \ \ | |/ / / / |/| | | | Make OpenDirectory fail if the directory doesn't exist
| * | | | Make OpenDirectory fail if the directory doesn't existGravatar archshift2014-12-077-3/+40
| | |_|/ | |/| | | | | | | | | | | | | | | | | | | | | | 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 .
* | | | Merge pull request #245 from rohit-n/null-nullptrGravatar bunnei2014-12-071-6/+6
|\ \ \ \ | |/ / / |/| | | Change NULLs to nullptrs.
| * | | Change NULLs to nullptrs.Gravatar Rohit Nirmal2014-12-031-6/+6
| | | |
* | | | Merge pull request #250 from Subv/cbranch_2Gravatar bunnei2014-12-043-4/+31
|\ \ \ \ | | | | | | | | | | SVC: Implemented GetThreadId.
| * | | | Threads: Remove a redundant function.Gravatar Subv2014-12-041-9/+1
| | | | | | | | | | | | | | | | | | | | Use the next_thread_id variable directly.
| * | | | Threads: Implemented a sequential thread idGravatar Subv2014-12-042-4/+19
| | | | |
| * | | | SVC: Implemented GetThreadId.Gravatar Subv2014-12-043-4/+24
| |/ / / | | | | | | | | | | | | For now threads are using their Handle value as their Id, it should not really cause any problems because Handle values are unique in Citra, but it should be changed. I left a ToDo there because this is not correct behavior as per hardware.
* | | | Merge pull request #222 from archshift/renamexyzGravatar bunnei2014-12-048-38/+229
|\ \ \ \ | | | | | | | | | | Implemented RenameFile and RenameDirectory in FS:USER
| * | | | Updated archive.cpp functions for proper error handlingGravatar archshift2014-12-035-94/+41
| | | | |
| * | | | Implemented RenameDirectory in FS:USERGravatar archshift2014-11-248-1/+123
| | | | |
| * | | | Implemented RenameFile in FS:USERGravatar archshift2014-11-248-1/+123
| | |_|/ | |/| |
* | | | Merge pull request #248 from lioncash/kernelGravatar bunnei2014-12-042-10/+7
|\ \ \ \ | | | | | | | | | | Misc minor kernel-related changes.
| * | | | kernel: Shorten GetCountGravatar Lioncash2014-12-031-6/+3
| | | | |
| * | | | kernel: Make some functions constGravatar Lioncash2014-12-032-4/+4
| | |_|/ | |/| |
* | | | Merge pull request #249 from lioncash/enumGravatar bunnei2014-12-041-1/+1
|\ \ \ \ | | | | | | | | | | mem_map: Make enum for addresses use u32 as the underlying type
| * | | | mem_map: Make enum for addresses use u32 as the underlying typeGravatar Lioncash2014-12-031-1/+1
| |/ / /
* | | | Merge pull request #247 from lioncash/constGravatar bunnei2014-12-032-4/+4
|\ \ \ \ | | | | | | | | | | hid_user: Pass by reference with PadButtonPress/PadButtonRelease
| * | | | hid_user: Pass by reference with PadButtonPress/PadButtonReleaseGravatar Lioncash2014-12-032-4/+4
| | |_|/ | |/| |