summaryrefslogtreecommitdiff
path: root/src/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Kernel: Added support for shared memory objects.Gravatar bunnei2014-07-055-0/+142
| | | | SharedMemory: Added optional name field for tracking known objects.
* mem_map: Updated interface to expose template functions to other modules.Gravatar bunnei2014-07-042-10/+16
|
* NCCH: Updated ExeFS memory allocation to be safer.Gravatar bunnei2014-07-042-1/+7
|
* Archive: Added Init/Shutdown methods to reset kernel archive state.Gravatar bunnei2014-07-043-0/+19
|
* Marked AppLoader_ELF, AppLoader_NCCH, and Archive_RomFS virtual functions as ↵Gravatar bunnei2014-07-043-13/+13
| | | | "override".
* Marked AppLoader_ELF, AppLoader_NCCH, and Archive_RomFS classes as "final"Gravatar bunnei2014-07-043-3/+3
|
* Loader: Updated read methods to be constGravatar bunnei2014-07-045-68/+79
| | | | - Required "file" handle to be made local and explicitly opened/closed as needed
* FileSys: Added preliminary support for applications reading the RomFS archive.Gravatar bunnei2014-07-0411-160/+311
| | | | | | | | | | 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.
* APT: Added stubbed ReceiveParameter and various cleanups.Gravatar bunnei2014-07-041-71/+93
| | | | | | APT: More cleanups. APT: Changed SignalType to be type u32.
* Loader: Refactored interface such that data is no longer stored by loader.Gravatar bunnei2014-06-273-96/+73
| | | | NCCH: Removed extra qualification ‘Loader::AppLoader_NCCH::’.
* FS: Added stubbed code to intercept and decode file system service functions.Gravatar bunnei2014-06-276-0/+164
| | | | FS: Added to CMakeLists.txt
* Kernel: Added stubbed code to support creation of kernel Archive objects.Gravatar bunnei2014-06-276-0/+95
|
* Core: Removed unused directory_file_system and meta_file_system modules.Gravatar bunnei2014-06-279-1477/+0
| | | | Core: Updated CMakeLists.txt to remove directory_file_system and meta_file_system modules.
* Loader: Refactored loading functions to only read data from binary if called.Gravatar bunnei2014-06-243-74/+141
| | | | NCCH: Updated LoadExec to use Memory::WriteBlock function to load binary code.
* MemMap: Added a WriteBlock function to write a buffer of data to memory.Gravatar bunnei2014-06-242-0/+14
|
* ELF: Refactored LoadInto(..) to use memcpy, removed unnecessary code.Gravatar bunnei2014-06-241-19/+8
|
* Loader: Refactored use of const.Gravatar bunnei2014-06-246-20/+19
|
* NCCH: Added RomFS loading.Gravatar bunnei2014-06-242-1/+36
|
* NCCH: Fixes reduce unnecessary logging and load logo/banner/etc. sections ↵Gravatar bunnei2014-06-243-22/+29
| | | | | | correctly. Loader: Added ErrorNotUsed ReturnStatus type to specify when something is not used.
* Loader: Implemented AppLoader interface for abstracting application loading.Gravatar bunnei2014-06-246-523/+672
| | | | | | | | | | | | | | | | | | - Various cleanups/refactorings to Loader, ELF, and NCCH modules. - Added AppLoader interface to ELF and NCCH. - Updated Qt/GLFW frontends to check AppLoader ResultStatus. NCCH: Removed extra qualification typos. Loader: Removed unnecessary #include's. NCCH: Improved readability of memcmp statements. NCCH: Added missing space. Elf: Removed unnecessary usage of unique_ptr. Loader: Removed unnecessary usage of unique_ptr.
* NCCH: Changed decompression to load .code directly into memory rather than ↵Gravatar bunnei2014-06-171-9/+3
| | | | an intermediate buffer.
* Elf: Removed unused macros, changed #include of "common.h" to just ↵Gravatar bunnei2014-06-171-117/+1
| | | | "common_types.h".
* Loader: Cleaned up and removed unused code, refactored ELF namespace.Gravatar bunnei2014-06-164-209/+70
|
* Elf: Renamed modules to be consistent with new loader naming, fixed tabs -> ↵Gravatar bunnei2014-06-168-372/+342
| | | | spaces.
* Loader: Added support for booting NCCH executables.Gravatar bunnei2014-06-166-0/+384
| | | | NCCH: Fixed typo in printing NCCH filename.
* Loader: Moved elf and loader modules to a "loader" subdirectory.Gravatar bunnei2014-06-168-30/+34
|
* Loader: Added stubbed detection of CXI and CCI files.Gravatar bunnei2014-06-161-0/+6
|
* Loader: Removed unused CXI and DAT loading code.Gravatar bunnei2014-06-161-76/+0
|
* Merge branch 'threading' of https://github.com/bunnei/citraGravatar bunnei2014-06-1436-1155/+1194
|\ | | | | | | | | | | Conflicts: src/core/hle/function_wrappers.h src/core/hle/service/gsp.cpp
| * Kernel: Removed unnecessary "#pragma once".Gravatar bunnei2014-06-131-2/+0
| |
| * Kernel: Added freeing of kernel objects on emulator shutdown.Gravatar bunnei2014-06-133-0/+13
| |
| * Event: Updated several log messages to be assertions.Gravatar bunnei2014-06-131-16/+8
| |
| * HLE: Moved "PARAM" and "RETURN" macros to function_wrappers.h (this is only ↵Gravatar bunnei2014-06-132-5/+6
| | | | | | | | module where they are needed).
| * SVC: Renamed all function wrapper templates to Wrap, moved to HLE namespace.Gravatar bunnei2014-06-132-157/+145
| |
| * Thread: Renamed occurrences of "t" to "thread" to improve readability.Gravatar bunnei2014-06-131-48/+45
| |
| * Thread: Cleaned up VerifyWait, fixed issue where nullptr msg could ↵Gravatar bunnei2014-06-131-9/+7
| | | | | | | | unnecessarily be logged.
| * HLE: Removed usnused EatCycles function.Gravatar bunnei2014-06-133-15/+0
| |
| * SVC: Cleaned up function wrappers to pass in correct argument types.Gravatar bunnei2014-06-132-870/+201
| |
| * Thread: Moved position of * in arguments.Gravatar bunnei2014-06-131-2/+2
| |
| * Thread: Updated VerifyWait to be more readable (but functionally the same).Gravatar bunnei2014-06-131-4/+3
| |
| * SVC: Moved declaration of "wait" variable in SendSyncRequest for improved ↵Gravatar bunnei2014-06-131-1/+1
| | | | | | | | readability.
| * HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)Gravatar bunnei2014-06-1313-239/+239
| |
| * Kernel: Updated various kernel function "name" arguments to be const references.Gravatar bunnei2014-06-134-6/+6
| |
| * HLE: Updated various handle debug assertions to be more clear.Gravatar bunnei2014-06-134-10/+10
| |
| * Mutex: Moved ReleaseMutex iterator declaration to be inside while loop.Gravatar bunnei2014-06-131-2/+1
| |
| * Kernel: Updated several member functions to be constGravatar bunnei2014-06-135-13/+13
| |
| * Core: Cleaned up SingleStep(), updated default LCD refresh to assume each ↵Gravatar bunnei2014-06-132-12/+14
| | | | | | | | instruction is ~3 cycles
| * Core: Changed HW update/thread reschedule to occur more frequently (assume ↵Gravatar bunnei2014-06-131-2/+2
| | | | | | | | each instruction is ~3 cycles)
| * Thread: Fixed bug with ResetThread where cpu_registers[15] was being ↵Gravatar bunnei2014-06-131-1/+1
| | | | | | | | incorrectly set
| * Kernel: Made SyncRequest not pure virtual, with a default implementation of ↵Gravatar bunnei2014-06-133-23/+4
| | | | | | | | error (as this is not required for all kernel objects)