| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Remove hand-crafted Visual Studio solution. | 2014-09-01 | 1 | -253/+0 | |
| | | |||||
| * | Kernel: Added preliminary support for address arbiters. | 2014-07-08 | 1 | -0/+2 | |
| | | | | | | | | | AddressArbiter: Added documentation comment, fixed whitespace issue. AddressArbiter: Fixed incorrect comment, reordered if-statement to be more clear. SVC: Removed trailing whitespace. | ||||
| * | Kernel: Added support for shared memory objects. | 2014-07-05 | 1 | -0/+2 | |
| | | | | | SharedMemory: Added optional name field for tracking known objects. | ||||
| * | FileSys: Added preliminary support for applications reading the RomFS archive. | 2014-07-04 | 1 | -1/+3 | |
| | | | | | | | | | | | Archive: Fixed brace ugliness for neobrain :) FS: Commented out unused local variables to prevent warnings. ...But keeping them here for future use. archive_romfs: Removed unused #include. | ||||
| * | FS: Added stubbed code to intercept and decode file system service functions. | 2014-06-27 | 1 | -0/+2 | |
| | | | | | FS: Added to CMakeLists.txt | ||||
| * | Kernel: Added stubbed code to support creation of kernel Archive objects. | 2014-06-27 | 1 | -0/+2 | |
| | | |||||
| * | Core: Removed unused directory_file_system and meta_file_system modules. | 2014-06-27 | 1 | -4/+0 | |
| | | | | | Core: Updated CMakeLists.txt to remove directory_file_system and meta_file_system modules. | ||||
| * | Elf: Renamed modules to be consistent with new loader naming, fixed tabs -> ↵ | 2014-06-16 | 1 | -3/+2 | |
| | | | | | spaces. | ||||
| * | Loader: Added support for booting NCCH executables. | 2014-06-16 | 1 | -0/+2 | |
| | | | | | NCCH: Fixed typo in printing NCCH filename. | ||||
| * | Loader: Moved elf and loader modules to a "loader" subdirectory. | 2014-06-16 | 1 | -6/+6 | |
| | | |||||
| * | Merge branch 'threading' of https://github.com/bunnei/citra | 2014-06-14 | 1 | -0/+4 | |
| |\ | | | | | | | | | | | Conflicts: src/core/hle/function_wrappers.h src/core/hle/service/gsp.cpp | ||||
| | * | hle: added stubbed service for ndm_u | 2014-05-30 | 1 | -0/+2 | |
| | | | |||||
| | * | kernel: added event module to support creation of CTR "Event" objects | 2014-05-27 | 1 | -0/+2 | |
| | | | |||||
| * | | Rename LCD to GPU. | 2014-06-12 | 1 | -3/+3 | |
| |/ | |||||
| * | mutex: initial commit of HLE module | 2014-05-20 | 1 | -0/+2 | |
| | | |||||
| * | renamed "syscall" module to "svc" (more accurate naming) | 2014-05-20 | 1 | -2/+2 | |
| | | |||||
| * | Merge master into threading to add support for VFP | 2014-05-16 | 1 | -6/+22 | |
| |\ | |||||
| | * | added maverick.cpp to ARM core from skyeye | 2014-05-16 | 1 | -0/+1 | |
| | | | |||||
| | * | added missing armcopro from skyeye | 2014-05-16 | 1 | -0/+1 | |
| | | | |||||
| | * | added missing skyeye mmu code | 2014-05-15 | 1 | -6/+13 | |
| | | | |||||
| | * | - moved mmu to arm/interpreter folder | 2014-05-15 | 1 | -0/+7 | |
| | | | | | | | | | - added initial VFP code from skyeye | ||||
| * | | added initial kernel/thread modules | 2014-05-09 | 1 | -0/+4 | |
| |/ | |||||
| * | added config_mem module for HLE of firmware configuration memory settings | 2014-05-06 | 1 | -0/+2 | |
| | | |||||
| * | renamed hle "mrc" module to "coprocessor" | 2014-05-01 | 1 | -2/+2 | |
| | | |||||
| * | added a module to load symbol map files for debugging | 2014-04-30 | 1 | -0/+2 | |
| | | |||||
| * | moved HLE::MRC to its own module, added support for catching data ↵ | 2014-04-25 | 1 | -0/+2 | |
| | | | | | synchronization barrier command | ||||
| * | renamed hw_lcd module to just lcd | 2014-04-17 | 1 | -2/+2 | |
| | | |||||
| * | added NDMA hardware interface | 2014-04-17 | 1 | -0/+2 | |
| | | |||||
| * | added class stub for HID:User service | 2014-04-16 | 1 | -0/+2 | |
| | | |||||
| * | - added stubbed out GSP::Gpu service interface | 2014-04-16 | 1 | -0/+2 | |
| | | | | | - various cleanups/refactors to HLE services | ||||
| * | - extracted srv: calls from service.cpp and put in its own module | 2014-04-15 | 1 | -0/+2 | |
| | | | | | | - added function tables for service calls - lots of refactoring | ||||
| * | added framework for APT service (application and title launching service) | 2014-04-13 | 1 | -0/+2 | |
| | | |||||
| * | - added HLE to connect to "srv:" service | 2014-04-12 | 1 | -0/+1 | |
| | | | | | | | - added a manager for keeping track of services/ports - added a memory mapped region for memory accessed by HLE - added HLE for GetThreadCommandBuffer function | ||||
| * | - renamed hle_syscall to just syscall | 2014-04-11 | 1 | -2/+3 | |
| | | | | | - added service.h as an initial service interface | ||||
| * | moved hle.cpp into hle folder (due to mistake earlier) | 2014-04-11 | 1 | -1/+1 | |
| | | |||||
| * | - removed syscall classes (will just use HLEFunction) | 2014-04-10 | 1 | -0/+1 | |
| | | | | | | - added hle.cpp and module registration - removed unused code | ||||
| * | added initial modules for setting up SysCall HLE | 2014-04-10 | 1 | -0/+4 | |
| | | |||||
| * | fixed project includes to use new directory structure | 2014-04-08 | 1 | -49/+49 | |
| | | |||||
| * | add hw_lcd.* to VS project files | 2014-04-05 | 1 | -0/+2 | |
| | | |||||
| * | added initial support for hw.cpp module | 2014-04-05 | 1 | -1/+1 | |
| | | |||||
| * | added hw module to interface h/w register reads/writes | 2014-04-04 | 1 | -0/+2 | |
| | | |||||
| * | - added an interface layer for ARM cores | 2014-04-04 | 1 | -0/+3 | |
| | | | | | - cleaned up core.cpp a bit | ||||
| * | moved arm core to interpreter directory | 2014-04-04 | 1 | -14/+14 | |
| | | |||||
| * | added thumb mode emulation | 2014-04-03 | 1 | -0/+1 | |
| | | |||||
| * | added ARM11 MMU from skyeye | 2014-03-29 | 1 | -0/+1 | |
| | | |||||
| * | added various arm modules from skyeye to make project link OK | 2014-03-29 | 1 | -1/+7 | |
| | | |||||
| * | updated Windows project files to include ELF files | 2014-03-25 | 1 | -0/+1 | |
| | | |||||
| * | added core_timing and system modules to core vcproj | 2013-10-01 | 1 | -0/+3 | |
| | | |||||
| * | upgraded proj files to vs 2013 | 2013-09-26 | 1 | -1/+5 | |
| | | |||||
| * | added system.h to project | 2013-09-26 | 1 | -0/+1 | |
| | | |||||