aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
Commit message (Collapse)AuthorAge
* Merge pull request #267 from bunnei/apt-shared-fontGravatar bunnei2014-12-12
|\ | | | | APT shared font loading
| * APT_U: Added GetSharedFont service function.Gravatar bunnei2014-12-12
| |
* | DSP: Added stub for ReadPipeIfPossible.Gravatar bunnei2014-12-12
| |
| * MemMap: Renamed "GSP" heap to "linear", as this is not specific to GSP.Gravatar bunnei2014-12-12
|/ | | | - 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).
* Merge pull request #256 from Subv/mutexGravatar bunnei2014-12-10
|\ | | | | Kernel/Mutex: Properly lock the mutex when a thread enters it
* | CFG:U: Store country codes as u16 instead of char pointers, and return the ↵Gravatar Emmanuel Gil Peyrot2014-12-10
| | | | | | | | correct error in GetCountryCodeID.
* | GSP: Trigger GPU interrupts at more accurate locations.Gravatar bunnei2014-12-09
| |
* | GSP: Updated TriggerCmdReqQueue to return success code.Gravatar bunnei2014-12-09
| |
* | GSP: Updated RegisterInterruptRelayQueue to return expected magic number.Gravatar bunnei2014-12-09
| |
* | GPU: Fixed bug in command list size decoding.Gravatar bunnei2014-12-09
| |
* | Remove unused NDMA moduleGravatar Yuri Kunde Schlesner2014-12-09
| |
* | Merge pull request #217 from archshift/cmd_buffGravatar bunnei2014-12-08
|\ \ | | | | | | Log the cmd_buff arguments when citra comes across an unimplemented function
* | | Thread: Fixed to wait on address when in arbitration.Gravatar bunnei2014-12-08
| | |
* | | Merge pull request #244 from bunnei/cleanup-memmapGravatar bunnei2014-12-08
|\ \ \ | | | | | | | | MemMap: Updated memory map to subtract base address instead of mask.
* \ \ \ Merge pull request #263 from lioncash/sasxGravatar bunnei2014-12-08
|\ \ \ \ | | | | | | | | | | Fix emulation of SASX and SSAX instructions.
* \ \ \ \ Merge pull request #259 from ichfly/masterGravatar bunnei2014-12-08
|\ \ \ \ \ | | | | | | | | | | | | Loader: Add 3DSX support
* \ \ \ \ \ Merge pull request #264 from Subv/filesGravatar bunnei2014-12-08
|\ \ \ \ \ \ | | | | | | | | | | | | | | Kernel/File: Fixed file read/write hwtests
* \ \ \ \ \ \ Merge pull request #260 from archshift/opendirGravatar bunnei2014-12-08
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Make OpenDirectory fail if the directory doesn't exist
| | * | | | | | Kernel/File: Fixed file read/write hwtestsGravatar Subv2014-12-08
| |/ / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| | | * | | | armemu: Fix SSAXGravatar Lioncash2014-12-08
| | | | | | |
| | * | | | | Loader: Add 3DSX supportGravatar ichfly2014-12-08
| |/ / / / / |/| | | | |
| | * | | | armemu: Fix SASXGravatar Lioncash2014-12-08
| | | | | |
| | * | | | armemu: Fix parenthesis warnings regarding bitwise opsGravatar Lioncash2014-12-07
| |/ / / / |/| | | |
| * | | | Make OpenDirectory fail if the directory doesn't existGravatar archshift2014-12-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 .
| | | | * Mutex: Remove some forward declarationsGravatar Subv2014-12-07
| | | | | | | | | | | | | | | | | | | | Moved Mutex::WaitSynchronization to the end of the file.
| | | | * Mutex: Release all held mutexes when a thread exits.Gravatar Subv2014-12-07
| | | | |
* | | | | Merge pull request #245 from rohit-n/null-nullptrGravatar bunnei2014-12-07
|\ \ \ \ \ | |/ / / / |/| | | | Change NULLs to nullptrs.
| | | | * Mutex: Properly lock the mutex when a thread enters itGravatar Subv2014-12-05
| |_|_|/ |/| | | | | | | | | | | Also resume only the next immediate thread waiting for the mutex when it is released, instead of resuming them all.
* | | | Merge pull request #250 from Subv/cbranch_2Gravatar bunnei2014-12-04
|\ \ \ \ | | | | | | | | | | SVC: Implemented GetThreadId.
* \ \ \ \ Merge pull request #222 from archshift/renamexyzGravatar bunnei2014-12-04
|\ \ \ \ \ | | | | | | | | | | | | Implemented RenameFile and RenameDirectory in FS:USER
* \ \ \ \ \ Merge pull request #248 from lioncash/kernelGravatar bunnei2014-12-04
|\ \ \ \ \ \ | | | | | | | | | | | | | | Misc minor kernel-related changes.
| | | * | | | Threads: Remove a redundant function.Gravatar Subv2014-12-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Use the next_thread_id variable directly.
| | | * | | | Threads: Implemented a sequential thread idGravatar Subv2014-12-04
| | | | | | |
| | * | | | | Updated archive.cpp functions for proper error handlingGravatar archshift2014-12-03
| | | | | | |
| | | * | | | SVC: Implemented GetThreadId.Gravatar Subv2014-12-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 #249 from lioncash/enumGravatar bunnei2014-12-04
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | mem_map: Make enum for addresses use u32 as the underlying type
* \ \ \ \ \ \ \ Merge pull request #247 from lioncash/constGravatar bunnei2014-12-03
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | hid_user: Pass by reference with PadButtonPress/PadButtonRelease
| | * | | | | | | mem_map: Make enum for addresses use u32 as the underlying typeGravatar Lioncash2014-12-03
| | | | | | | | |
* | | | | | | | | Merge pull request #238 from archshift/dspGravatar bunnei2014-12-03
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Add stub for ConvertProcessFromDspDram
| * | | | | | | | | Add stub for ConvertProcessFromDspDramGravatar archshift2014-12-03
| | |/ / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | Should theoretically push retail stuff further along
| | | * | | | | | kernel: Shorten GetCountGravatar Lioncash2014-12-03
| | | | | | | | |
| | | * | | | | | kernel: Make some functions constGravatar Lioncash2014-12-03
| | |/ / / / / / | |/| | | | | |
| | * | | | | | hid_user: Pass by reference with PadButtonPress/PadButtonReleaseGravatar Lioncash2014-12-03
| | | |/ / / / | | |/| | | |
* | / | | | | PTM_U: Added a stub for GetBatteryLevel & GetBatteryChargeState & ↵Gravatar purpasmart962014-12-03
| |/ / / / / |/| | | | | | | | | | | | | | | | | GetAdapterState
| | | * | | Change NULLs to nullptrs.Gravatar Rohit Nirmal2014-12-03
| |_|/ / / |/| | | |
* | | | | Merge pull request #231 from purpasmart96/serv_ac_wifi_statusGravatar bunnei2014-12-03
|\ \ \ \ \ | | | | | | | | | | | | AC_U: Added a stub for GetWifiStatus
* \ \ \ \ \ Merge pull request #219 from Subv/ptmGravatar bunnei2014-12-03
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | PTM_U: Implemented the GetShellState function.
| | | | * | MemMap: Updated memory map to subtract base address instead of mask.Gravatar bunnei2014-12-03
| |_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - More readable, a little less error prone. Conflicts: src/core/mem_map.h src/core/mem_map_funcs.cpp
| | * | | AC_U: Added a stub for GetWifiStatusGravatar purpasmart962014-12-02
| | | | |
* | | | | Merge pull request #224 from bunnei/dsp-service-improvementsGravatar bunnei2014-11-30
|\ \ \ \ \ | | | | | | | | | | | | Dsp service improvements