summaryrefslogtreecommitdiffstats
path: root/src/core/CMakeLists.txt (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #386 from archshift/y2rubunnei2015-01-051-0/+2
|\ | | | | Stub the y2r:u service
| * Stub the y2r:u servicearchshift2015-01-031-0/+2
| |
* | Archives: Reduced duplicate code in RomFS and SaveCheck.Subv2015-01-031-4/+4
|/ | | | Fixed a few warnings and cleaned up the code
* Archives: Implemented ExtSaveData and SharedExtSaveDataSubv2014-12-301-0/+2
| | | | | | | | They will be stored in /extsavedata/SDMC and /extsavedata/NAND respectively. Also redirect some APT_A functions to their APT_U equivalents. Implemented the gamecoin.dat file in SharedExtSaveData in the PTM module. Implemented formatting the savegame. Retake a previous savegame if it exists instead of reporting them as not formatted every time a game is loaded.
* More services & small clean upspurpasmart962014-12-261-4/+12
|
* CFG: Create a new subfolder cfg inside service to handle cfgSubv2014-12-211-4/+6
| | | | Moved most of the shared CFG code there, implemented a few CFG:I functions
* SaveData: Implemented the SystemSaveData archive.Subv2014-12-181-0/+2
| | | | It will be stored in the /syssavedata folder. This archive is user by various Services and possibly games via the FS:U service.
* Filesystem/Archives: Implemented the SaveData archiveSubv2014-12-181-4/+4
| | | | | | | | | | The savedata for each game is stored in /savedata/<ProgramID> for NCCH files. ELF files and 3DSX files use the folder 0 because they have no ID information Got rid of the code duplication in File and Directory Files that deal with the host machine's file system now live in DiskFile, similarly for directories and DiskDirectory and archives with DiskArchive. FS_U: Use the correct error code when a file wasn't found
* Merge pull request #283 from yuriks/archive-refactorbunnei2014-12-161-7/+7
|\ | | | | Archive refactor
| * Service.FS: Rename FileSys::File to FileBackendYuri Kunde Schlesner2014-12-161-1/+1
| |
| * Service.FS: Rename FileSys::Directory to DirectoryBackendYuri Kunde Schlesner2014-12-161-1/+1
| |
| * Service.FS: Rename FileSys::Archive to ArchiveBackendYuri Kunde Schlesner2014-12-161-1/+1
| |
| * HLE: Move kernel/archive.* to service/fs/Yuri Kunde Schlesner2014-12-161-4/+4
| |
* | Merge pull request #282 from archshift/servicesbunnei2014-12-161-0/+8
|\ \ | |/ |/| Added stubs for ldr:ro, cecd:u, nim:aoc, and am:app services
| * Added stub for nim:aoc service...archshift2014-12-161-0/+2
| |
| * Added stub for cecd:u service...archshift2014-12-161-0/+2
| | | | | | | | I couldn't find any information about this service...
| * Added stub for ldr:ro service...archshift2014-12-161-0/+2
| |
| * Added am:app service stub.archshift2014-12-161-0/+2
| | | | | | | | Apparently nothing at all is known about this service...
* | Remove SyncRequest from K::Object and create a new K::Session typeYuri Kunde Schlesner2014-12-151-0/+1
|/ | | | | | | This is a first step at fixing the conceptual insanity that is our handling of service and IPC calls. For now, interfaces still directly derived from Session because we don't have the infrastructure to do it properly. (That is, Processes and scheduling them.)
* SVC: Implemented svcCreateSemaphoreSubv2014-12-131-0/+2
| | | | | ToDo: Implement svcReleaseSemaphore * Some testing against hardware needed
* Remove unused NDMA moduleYuri Kunde Schlesner2014-12-091-2/+0
|
* Loader: Add 3DSX supportichfly2014-12-081-0/+2
|
* HLE: Revamp error handling throrough the HLE codeYuri Kunde Schlesner2014-11-241-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | All service calls in the CTR OS return result codes indicating the success or failure of the call. Previous to this commit, Citra's HLE emulation of services and the kernel universally either ignored errors or returned dummy -1 error codes. This commit makes an initial effort to provide an infrastructure for error reporting and propagation which can be use going forward to make HLE calls accurately return errors as the original system. A few parts of the code have been updated to use the new system where applicable. One part of this effort is the definition of the `ResultCode` type, which provides facilities for constructing and parsing error codes in the structured format used by the CTR. The `ResultVal` type builds on `ResultCode` by providing a container for values returned by function that can report errors. It enforces that correct error checking will be done on function returns by preventing the use of the return value if the function returned an error code. Currently this change is mostly internal since errors are still suppressed on the ARM<->HLE border, as a temporary compatibility hack. As functionality is implemented and tested this hack can be eventually removed.
* Add more services and some fixes, along with more "override"purpasmart962014-11-211-0/+12
| | | | in the service's headers
* Add missing boss:U service, needed according to Nintendo Zone logs.archshift2014-11-171-0/+2
|
* Add FRD:U service and functionsarchshift2014-11-111-0/+2
|
* Added stub err:f service.archshift2014-11-021-0/+2
|
* Added a bunch of servicespurpasmart962014-11-011-0/+16
|
* Renamed souce files of services to match port namesGareth Poole2014-10-291-10/+10
|
* ARM: Removed unnecessary and unused SkyEye MMU code.bunnei2014-10-251-15/+0
| | | | Added license header back in. I originally removed this because I mostly rewrote the file, but meh
* ARM: Removed unused armos code from SkyEye.bunnei2014-10-251-1/+0
|
* ARM: Integrate SkyEye faster "dyncom" interpreter.bunnei2014-10-251-5/+14
| | | | | | | | | | Fixed typo (make protected member public) Added license header back in. I originally removed this because I mostly rewrote the file, but meh ARM: Fixed a type error in dyncom interpreter. ARM: Updated dyncom to use unique_ptr for internal ARM state.
* ARM: Reorganized file structure to move shared SkyEye code to a more common area.bunnei2014-10-251-15/+15
| | | | Removed s_ prefix
* Added configuration file system.archshift2014-10-081-0/+2
| | | | Uses QSettings on citra-qt, and inih on citra-cli.
* Core: Add a Directory object, with both a stub and a passthrough implementations.Emmanuel Gil Peyrot2014-09-171-0/+5
|
* Core: Add a passthrough backend for the filesystem, exposed as SDMC.Emmanuel Gil Peyrot2014-09-171-0/+4
|
* Core: Add a new File class, obtainable from an Archive, and a stub implementation.Emmanuel Gil Peyrot2014-09-171-0/+3
|
* CMake cleanupYuri Kunde Schlesner2014-09-011-47/+56
| | | | | | | | Several cleanups to the buildsystem: - Do better factoring of common libs between platforms. - Add support to building on Windows. - Remove Qt4 support. - Re-sort file lists and add missing headers.
* Kernel: Added preliminary support for address arbiters.bunnei2014-07-091-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.bunnei2014-07-051-0/+2
| | | | SharedMemory: Added optional name field for tracking known objects.
* FileSys: Added preliminary support for applications reading the RomFS archive.bunnei2014-07-051-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.bunnei2014-06-271-0/+2
| | | | FS: Added to CMakeLists.txt
* Kernel: Added stubbed code to support creation of kernel Archive objects.bunnei2014-06-271-0/+2
|
* Core: Removed unused directory_file_system and meta_file_system modules.bunnei2014-06-271-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 -> spaces.bunnei2014-06-171-3/+2
|
* Loader: Added support for booting NCCH executables.bunnei2014-06-171-0/+2
| | | | NCCH: Fixed typo in printing NCCH filename.
* Loader: Moved elf and loader modules to a "loader" subdirectory.bunnei2014-06-171-5/+5
|
* Merge branch 'threading' of https://github.com/bunnei/citrabunnei2014-06-141-0/+2
|\ | | | | | | | | | | Conflicts: src/core/hle/function_wrappers.h src/core/hle/service/gsp.cpp
| * hle: added stubbed service for ndm_ubunnei2014-05-301-0/+1
| |
| * event: fixed typos and updated CMakeListsbunnei2014-05-281-0/+1
| |
* | Rename LCD to GPU.Tony Wasserka2014-06-121-2/+2
| |
* | core: fixed headers in CMakeListsbunnei2014-05-231-1/+4
| |
* | Merge branch 'threading'bunnei2014-05-231-1/+4
|\|
| * mutex: initial commit of HLE modulebunnei2014-05-211-0/+1
| |
| * renamed "syscall" module to "svc" (more accurate naming)bunnei2014-05-211-1/+1
| |
| * Merge master into threading to add support for VFPbunnei2014-05-171-1/+13
| |\
| * | added initial kernel/thread modulesbunnei2014-05-101-0/+2
| | |
* | | CMakeLists: rename HEADS, improved commentsarchshift2014-05-201-2/+2
| | | | | | | | | | | | Changes for clarity of comments, removed redundant compiler flags.
* | | Updated cmakelistsarchshift2014-05-171-6/+12
| | |
* | | Merge remote-tracking branch 'upstream/master' into issue-7-fixarchshift2014-05-171-2/+16
|\ \ \ | | |/ | |/|
| * | fixed typo in CMakeLists.txtbunnei2014-05-171-1/+1
| | |
| * | added maverick.cpp to ARM core from skyeyebunnei2014-05-161-1/+2
| | |
| * | added missing armcopro from skyeyebunnei2014-05-161-0/+1
| | |
| * | added missing skyeye mmu codebunnei2014-05-161-0/+6
| | |
| * | - moved mmu to arm/interpreter folderbunnei2014-05-161-1/+5
| |/ | | | | | | - added initial VFP code from skyeye
| * added config_mem module for HLE of firmware configuration memory settingsbunnei2014-05-071-0/+1
| |
| * renamed hle "mrc" module to "coprocessor"bunnei2014-05-021-1/+1
| |
| * added a module to load symbol map files for debuggingbunnei2014-05-011-0/+1
| |
* | Fixed indentsarchshift2014-05-011-2/+2
| |
* | A bit of Cmake lovearchshift2014-05-011-1/+38
|/
* moved HLE::MRC to its own module, added support for catching data synchronization barrier commandbunnei2014-04-251-0/+1
|
* updated CMakeLists for missing filesShizZy2014-04-231-1/+9
|
* fixed a bunch of errors in CMakeListsbunnei2014-04-101-1/+1
|
* updated CMakeListsbunnei2014-04-101-8/+21
|
* adding initial project layoutShizZy2013-08-301-0/+10