summaryrefslogtreecommitdiffstats
path: root/src/core/CMakeLists.txt (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move core/mem_map.{cpp,h} => core/hle/kernel/memory.{cpp,h}Yuri Kunde Schlesner2015-08-161-2/+2
|
* dyncom: Use ARMul_State as an objectLioncash2015-07-261-3/+1
| | | | Gets rid of C-like parameter passing.
* dyncom: Rename armdefs.h to armstate.hLioncash2015-07-261-1/+1
|
* dyncom: Move helper functions to their own headerLioncash2015-07-261-0/+1
|
* dyncom: Move arminit.cpp and armsupp.cpp into skyeye_commonLioncash2015-07-261-2/+2
|
* CiTrace: Record default vertex attributes.Tony Wasserka2015-07-131-1/+1
|
* Add CiTrace recording support.Tony Wasserka2015-07-131-0/+3
| | | | | | This is exposed in the GUI as a new "CiTrace Recording" widget. Playback is implemented by a standalone 3DS homebrew application (which only runs reliably within Citra currently; on an actual 3DS it will often crash still).
* HLE/APT: Initial HLE support for applets.Subv2015-07-121-0/+4
| | | | Currently only the SWKBD is emulated, and there's currently no way to ask the user for input, so it always returns "Subv" as the text.
* Merge pull request #860 from yuriks/y2r-colorYuri Kunde Schlesner2015-06-221-0/+2
|\ | | | | Color support for Y2R
| * Y2R: Rework conversion process, enabling support for all formatsYuri Kunde Schlesner2015-06-221-0/+2
| |
* | Services: Continue separation of services into their own folderspurpasmart962015-06-121-28/+52
|/
* Kernel: Add VMManager to manage process address spacesYuri Kunde Schlesner2015-05-271-0/+2
| | | | | | | | This enables more dynamic management of the process address space, compared to just directly configuring the page table for major areas. This will serve as the foundation upon which the rest of the Kernel memory management functions will be built.
* dyncom: Get rid of armemu.hLioncash2015-05-241-1/+0
|
* Core/ResourceLimits: Implemented the basic structure of ResourceLimits.Subv2015-05-151-0/+2
| | | | | | Implemented svcs GetResourceLimit, GetResourceLimitCurrentValues and GetResourceLimitLimitValues. Note that the resource limits do not currently keep track of used objects, since we have no way to distinguish between an object created by the application, and an object created by some HLE module once we're inside Kernel::T::Create.
* Memory: Use a table based lookup scheme to read from memory regionsYuri Kunde Schlesner2015-05-151-0/+1
|
* Memmap: Re-organize memory function in two filesYuri Kunde Schlesner2015-05-151-1/+2
| | | | | | | memory.cpp/h contains definitions related to acessing memory and configuring the address space mem_map.cpp/h contains higher-level definitions related to configuring the address space accoording to the kernel and allocating memory.
* Kernel: Introduce skeleton Process class to hold process dataYuri Kunde Schlesner2015-05-091-0/+2
|
* Core: Fix sorting in CMakeFiles.txtYuri Kunde Schlesner2015-05-081-21/+21
|
* Remove unnecessary dyncom header filesLioncash2015-05-081-2/+0
|
* FileSys: De-inline Path membersYuri Kunde Schlesner2015-05-071-0/+1
|
* dyncom: Remove unused/unnecessary VFP cruftLioncash2015-04-181-1/+0
|
* IR: Move The IR services to their own folder and implement "GetHandles"purpasmart962015-04-041-4/+8
|
* Services: Stubs and minor changespurpasmart962015-04-031-0/+2
|
* Added LCD registers, and implementation for color filling in OGL code.archshift2015-03-091-0/+2
|
* Services: Moved the PTM and APT services to their own folderSubv2015-03-041-12/+16
| | | | | | This coincidentally fixes an issue about the PTM service failing to create its SharedExtSaveData archive due to the FS service not being initialized by the time the creating code runs. Ideally I'd like to move each process to its own folder, and have a single file per process that registers the service classes, which would be in their own files inside that folder. Then each service class would just call functions from the process to complete the commands.
* Explicitly instantiate constructors/destructors for Kernel objectsYuri Kunde Schlesner2015-02-021-0/+1
| | | | | | This should speed up compile times a bit, as well as enable more liberal use of forward declarations. (Due to SharedPtr not trying to emit the destructor anymore.)
* arm: Adios armemuLioncash2015-02-011-5/+0
|
* arm: Get rid of armcpu.h and skyeye_types.hLioncash2015-01-301-2/+0
|
* Services: Stubbed more services.Subv2015-01-241-0/+14
| | | | Implemented FSUser::CreateExtSaveData
* Merge pull request #493 from archshift/ptmplaybunnei2015-01-221-0/+4
|\ | | | | Stubbed some services
| * Stubbed cam:u servicearchshift2015-01-211-0/+2
| |
| * Stubbed ptm:play servicearchshift2015-01-211-0/+2
| |
* | Added HID_SPVR service and split HID_U implementation into service/hid/hid.xxxarchshift2015-01-211-2/+6
|/
* Merge pull request #383 from zhuowei/shared_pagebunnei2015-01-191-0/+2
|\ | | | | Add some support for the shared page
| * Add some support for the shared page (currently 3d slider is implemented)Zhuowei Zhang2015-01-161-0/+2
| |
* | Services: Added some missing services.Subv2015-01-131-0/+6
| | | | | | | | | | cfg:s, ptm:sysm, apt:s. apt:s is almost exactly the same as apt:u as per 3dbrew
* | SVC: Implemented the Timer service calls.Subv2015-01-091-0/+2
|/
* 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