| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-03-04 | Loader/NCCH: Log the program ID during loading | Yuri Kunde Schlesner | |
| This is useful for all sorts of things, but mainly to identify save folders more easily. | |||
| 2016-03-05 | Merge pull request #1429 from mailwl/branch-acu | bunnei | |
| ac:u IsConnected implemented | |||
| 2016-03-04 | Merge pull request #1389 from yuriks/stub-cam | bunnei | |
| Stub CAM:U service | |||
| 2016-03-04 | ac:u: Stub IsConnected | mailwl | |
| 2016-03-03 | Display errors in GUI when loading ROM failed | LittleWhite | |
| 2016-03-02 | Merge pull request #1434 from Kloen/legend | bunnei | |
| Add THREADPROCESSORID_ALL on SVC::CreateThread | |||
| 2016-03-01 | Merge pull request #1297 from Subv/saves | bunnei | |
| DiskDirectory: Initialize the directory member with valid info. | |||
| 2016-03-01 | ThreadProcessorId_All on SVC::CreateThread | Kloen | |
| 2016-02-29 | Service/CFG: Fix potential endianess issue | Yuri Kunde Schlesner | |
| 2016-02-29 | Service/CFG: Add block 0x000A0000 (username) to default config file | Yuri Kunde Schlesner | |
| 2016-02-29 | Service/CAM: Add doxycomments to all service functions | Yuri Kunde Schlesner | |
| 2016-02-26 | Initial implementation ir:user | mailwl | |
| 2016-02-21 | AudioCore: Skeleton Implementation | MerryMage | |
| This commit: * Adds a new subproject, audio_core. * Defines structures that exist in DSP shared memory. * Hooks up various other parts of the emulator into audio core. This sets the foundation for a later HLE DSP implementation. | |||
| 2016-02-13 | Service/CAM: Dummy implementation of some functions | Yuri Kunde Schlesner | |
| Thanks to @mailwl for the initial version of the stubs. | |||
| 2016-02-12 | BitField: Make trivially copyable and remove assignment operator | MerryMage | |
| 2016-02-02 | services: Get rid of unnecessary includes | Lioncash | |
| 2016-02-01 | services: Update function tables | Lioncash | |
| 2016-01-30 | Merge pull request #1377 from MerryMage/mmio | bunnei | |
| Memory: Implemented MMIO | |||
| 2016-01-30 | Memory: Implement MMIO | MerryMage | |
| 2016-01-25 | elf: Don't cast away const | Lioncash | |
| 2016-01-25 | archive_backend: Remove unnecessary const from return types | Lioncash | |
| This doesn't return by reference so const isn't really necessary | |||
| 2016-01-19 | ARM_Disasm::DisassembleMemHalf: actually use width in determining opcode name | rob turner | |
| 2016-01-16 | DiskDirectory: Initialize the directory member with valid info. | Subv | |
| 2016-01-14 | Merge pull request #1327 from Subv/unmap_memblock | bunnei | |
| HLE/SVC: Implement UnmapMemoryBlock. | |||
| 2016-01-14 | HLE/SVC: Implement UnmapMemoryBlock. | Subv | |
| This implementation will need to be (almost completely) changed when we implement multiprocess support. | |||
| 2016-01-05 | Merge pull request #1283 from Subv/soc_fixup | bunnei | |
| HLE/Sockets: Fixed the buffer offset in recvfrom. | |||
| 2015-12-30 | Merge pull request #1310 from lioncash/services | bunnei | |
| services: Update some function tables | |||
| 2015-12-30 | arm_dyncom_dec: Fix decoding of VMLS | Lioncash | |
| Previously, all VMLS variants would misdecode as CDP (which isn't necessarily wrong in itself, however VMLS has it's own label of execution) | |||
| 2015-12-30 | services: Update some function tables | Lioncash | |
| 2015-12-29 | Merge pull request #1306 from Subv/sync | bunnei | |
| HLE/Timers: Reset OneShot timers when they are acquired instead of when they're triggered | |||
| 2015-12-29 | HLE/Timers: Reset OneShot timers when they are acquired instead of when ↵ | Subv | |
| they're triggered. Closes #1139 | |||
| 2015-12-29 | core: Use unique_ptr for holding the interpreter instances | Lioncash | |
| 2015-12-28 | Merge pull request #1300 from Subv/arbitrateaddress | bunnei | |
| SVC: Fixed ArbitrateAddress to behave as it does on hardware. | |||
| 2015-12-28 | dyncom: Handle modifying the APSR via an MRC instruction | Lioncash | |
| 2015-12-27 | SVC: Fixed ArbitrateAddress to behave as it does on hardware. | Subv | |
| This was verified with hwtests that i plan to upload later on. | |||
| 2015-12-25 | svc: Remove superfluous printf argument | Lioncash | |
| 2015-12-24 | HLE/Sockets: Fixed the buffer offset in recvfrom. | Subv | |
| Closes #1277 | |||
| 2015-12-20 | dyncom: Remove PC dispatch from several instructions | Lioncash | |
| These instructions aren't capable of using the PC as a destination | |||
| 2015-12-19 | dyncom: Handle unprivileged load/store variants correctly | Lioncash | |
| LDRT/LDRBT/STRBT/STRT should simulate the load or store as if the host CPU is in user mode. STRT is also allowed to use the PC as an operand | |||
| 2015-12-12 | svc: Fix compilation with LOG_TRACE enabled | Lioncash | |
| 2015-12-07 | Merge pull request #1272 from yuriks/merge-rasterizer | Yuri Kunde Schlesner | |
| VideoCore: Unify interface to OpenGL and SW rasterizers | |||
| 2015-12-07 | VideoCore: Unify interface to OpenGL and SW rasterizers | Yuri Kunde Schlesner | |
| This removes explicit checks sprinkled all over the codebase to instead just have the SW rasterizer expose an implementation with no-ops for most operations. | |||
| 2015-12-06 | VideoCore: Rename HWRasterizer methods to be less confusing | Yuri Kunde Schlesner | |
| 2015-12-06 | dyncom: Remove static keyword from header functions | Lioncash | |
| 2015-12-06 | arm_interface: Make GetNumInstructions const | Lioncash | |
| 2015-12-06 | arm_interface: directly initialize class members | Lioncash | |
| 2015-12-06 | dyncom: const correctness changes | Lioncash | |
| 2015-12-03 | Merge pull request #1252 from Subv/cam | bunnei | |
| Services/Cam: Added new log type and camera enums from 3dbrew. | |||
| 2015-11-30 | Kernel: Implement svcGetSystemInfo | Yuri Kunde Schlesner | |
| This makes smealum/ctrulib@b96dd51d3349961189d4ab1bc2a5c45deff21c09 work with Citra. | |||
| 2015-11-29 | armstate: Zero out the registers on creation | Lioncash | |
| std::array isn't always guaranteed to explicitly zero out it's contents without an initializer list. | |||
