aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/CMakeLists.txt
Commit message (Collapse)AuthorAge
...
* | Remove SyncRequest from K::Object and create a new K::Session typeGravatar Yuri Kunde Schlesner2014-12-15
|/ | | | | | | 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 svcCreateSemaphoreGravatar Subv2014-12-13
| | | | | ToDo: Implement svcReleaseSemaphore * Some testing against hardware needed
* Remove unused NDMA moduleGravatar Yuri Kunde Schlesner2014-12-09
|
* Loader: Add 3DSX supportGravatar ichfly2014-12-08
|
* HLE: Revamp error handling throrough the HLE codeGravatar Yuri Kunde Schlesner2014-11-24
| | | | | | | | | | | | | | | | | | | | | | | | | | 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"Gravatar purpasmart962014-11-20
| | | | in the service's headers
* Add missing boss:U service, needed according to Nintendo Zone logs.Gravatar archshift2014-11-17
|
* Add FRD:U service and functionsGravatar archshift2014-11-10
|
* Added stub err:f service.Gravatar archshift2014-11-01
|
* Added a bunch of servicesGravatar purpasmart962014-11-01
|
* Renamed souce files of services to match port namesGravatar Gareth Poole2014-10-29
|
* ARM: Removed unnecessary and unused SkyEye MMU code.Gravatar bunnei2014-10-25
| | | | Added license header back in. I originally removed this because I mostly rewrote the file, but meh
* ARM: Removed unused armos code from SkyEye.Gravatar bunnei2014-10-25
|
* ARM: Integrate SkyEye faster "dyncom" interpreter.Gravatar bunnei2014-10-25
| | | | | | | | | | 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 ↵Gravatar bunnei2014-10-25
| | | | | | area. Removed s_ prefix
* Added configuration file system.Gravatar archshift2014-10-07
| | | | Uses QSettings on citra-qt, and inih on citra-cli.
* Core: Add a Directory object, with both a stub and a passthrough ↵Gravatar Emmanuel Gil Peyrot2014-09-17
| | | | implementations.
* Core: Add a passthrough backend for the filesystem, exposed as SDMC.Gravatar Emmanuel Gil Peyrot2014-09-17
|
* Core: Add a new File class, obtainable from an Archive, and a stub ↵Gravatar Emmanuel Gil Peyrot2014-09-17
| | | | implementation.
* CMake cleanupGravatar Yuri Kunde Schlesner2014-09-01
| | | | | | | | 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.Gravatar bunnei2014-07-08
| | | | | | | | 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.Gravatar bunnei2014-07-05
| | | | SharedMemory: Added optional name field for tracking known objects.
* FileSys: Added preliminary support for applications reading the RomFS archive.Gravatar bunnei2014-07-04
| | | | | | | | | | 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.Gravatar bunnei2014-06-27
| | | | FS: Added to CMakeLists.txt
* Kernel: Added stubbed code to support creation of kernel Archive objects.Gravatar bunnei2014-06-27
|
* Core: Removed unused directory_file_system and meta_file_system modules.Gravatar bunnei2014-06-27
| | | | 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 -> ↵Gravatar bunnei2014-06-16
| | | | spaces.
* Loader: Added support for booting NCCH executables.Gravatar bunnei2014-06-16
| | | | NCCH: Fixed typo in printing NCCH filename.
* Loader: Moved elf and loader modules to a "loader" subdirectory.Gravatar bunnei2014-06-16
|
* Merge branch 'threading' of https://github.com/bunnei/citraGravatar bunnei2014-06-14
|\ | | | | | | | | | | Conflicts: src/core/hle/function_wrappers.h src/core/hle/service/gsp.cpp
* | Rename LCD to GPU.Gravatar Tony Wasserka2014-06-12
| |
| * hle: added stubbed service for ndm_uGravatar bunnei2014-05-30
| |
| * event: fixed typos and updated CMakeListsGravatar bunnei2014-05-27
| |
* | core: fixed headers in CMakeListsGravatar bunnei2014-05-22
| |
* | Merge branch 'threading'Gravatar bunnei2014-05-22
|\|
| * mutex: initial commit of HLE moduleGravatar bunnei2014-05-20
| |
| * renamed "syscall" module to "svc" (more accurate naming)Gravatar bunnei2014-05-20
| |
* | CMakeLists: rename HEADS, improved commentsGravatar archshift2014-05-19
| | | | | | | | Changes for clarity of comments, removed redundant compiler flags.
* | Updated cmakelistsGravatar archshift2014-05-16
| |
* | Merge remote-tracking branch 'upstream/master' into issue-7-fixGravatar archshift2014-05-16
|\ \
| | * Merge master into threading to add support for VFPGravatar bunnei2014-05-16
| | |\ | | |/ | |/|
| * | fixed typo in CMakeLists.txtGravatar bunnei2014-05-16
| | |
| * | added maverick.cpp to ARM core from skyeyeGravatar bunnei2014-05-16
| | |
| * | added missing armcopro from skyeyeGravatar bunnei2014-05-16
| | |
| * | added missing skyeye mmu codeGravatar bunnei2014-05-15
| | |
| * | - moved mmu to arm/interpreter folderGravatar bunnei2014-05-15
| | | | | | | | | | | | - added initial VFP code from skyeye
| | * added initial kernel/thread modulesGravatar bunnei2014-05-09
| |/
| * added config_mem module for HLE of firmware configuration memory settingsGravatar bunnei2014-05-06
| |
| * renamed hle "mrc" module to "coprocessor"Gravatar bunnei2014-05-01
| |
| * added a module to load symbol map files for debuggingGravatar bunnei2014-04-30
| |