| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Kernel: Added support for shared memory objects. | 2014-07-05 | 5 | -0/+142 | ||
| | | | | | SharedMemory: Added optional name field for tracking known objects. | |||||
| * | mem_map: Updated interface to expose template functions to other modules. | 2014-07-04 | 2 | -10/+16 | ||
| | | ||||||
| * | NCCH: Updated ExeFS memory allocation to be safer. | 2014-07-04 | 2 | -1/+7 | ||
| | | ||||||
| * | Archive: Added Init/Shutdown methods to reset kernel archive state. | 2014-07-04 | 3 | -0/+19 | ||
| | | ||||||
| * | Marked AppLoader_ELF, AppLoader_NCCH, and Archive_RomFS virtual functions as ↵ | 2014-07-04 | 3 | -13/+13 | ||
| | | | | | "override". | |||||
| * | Marked AppLoader_ELF, AppLoader_NCCH, and Archive_RomFS classes as "final" | 2014-07-04 | 3 | -3/+3 | ||
| | | ||||||
| * | Loader: Updated read methods to be const | 2014-07-04 | 5 | -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. | 2014-07-04 | 11 | -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. | 2014-07-04 | 1 | -71/+93 | ||
| | | | | | | | APT: More cleanups. APT: Changed SignalType to be type u32. | |||||
| * | Loader: Refactored interface such that data is no longer stored by loader. | 2014-06-27 | 3 | -96/+73 | ||
| | | | | | NCCH: Removed extra qualification ‘Loader::AppLoader_NCCH::’. | |||||
| * | FS: Added stubbed code to intercept and decode file system service functions. | 2014-06-27 | 6 | -0/+164 | ||
| | | | | | FS: Added to CMakeLists.txt | |||||
| * | Kernel: Added stubbed code to support creation of kernel Archive objects. | 2014-06-27 | 6 | -0/+95 | ||
| | | ||||||
| * | Core: Removed unused directory_file_system and meta_file_system modules. | 2014-06-27 | 9 | -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. | 2014-06-24 | 3 | -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. | 2014-06-24 | 2 | -0/+14 | ||
| | | ||||||
| * | ELF: Refactored LoadInto(..) to use memcpy, removed unnecessary code. | 2014-06-24 | 1 | -19/+8 | ||
| | | ||||||
| * | Loader: Refactored use of const. | 2014-06-24 | 6 | -20/+19 | ||
| | | ||||||
| * | NCCH: Added RomFS loading. | 2014-06-24 | 2 | -1/+36 | ||
| | | ||||||
| * | NCCH: Fixes reduce unnecessary logging and load logo/banner/etc. sections ↵ | 2014-06-24 | 3 | -22/+29 | ||
| | | | | | | | correctly. Loader: Added ErrorNotUsed ReturnStatus type to specify when something is not used. | |||||
| * | Loader: Implemented AppLoader interface for abstracting application loading. | 2014-06-24 | 6 | -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 ↵ | 2014-06-17 | 1 | -9/+3 | ||
| | | | | | an intermediate buffer. | |||||
| * | Elf: Removed unused macros, changed #include of "common.h" to just ↵ | 2014-06-17 | 1 | -117/+1 | ||
| | | | | | "common_types.h". | |||||
| * | Loader: Cleaned up and removed unused code, refactored ELF namespace. | 2014-06-16 | 4 | -209/+70 | ||
| | | ||||||
| * | Elf: Renamed modules to be consistent with new loader naming, fixed tabs -> ↵ | 2014-06-16 | 8 | -372/+342 | ||
| | | | | | spaces. | |||||
| * | Loader: Added support for booting NCCH executables. | 2014-06-16 | 6 | -0/+384 | ||
| | | | | | NCCH: Fixed typo in printing NCCH filename. | |||||
| * | Loader: Moved elf and loader modules to a "loader" subdirectory. | 2014-06-16 | 8 | -30/+34 | ||
| | | ||||||
| * | Loader: Added stubbed detection of CXI and CCI files. | 2014-06-16 | 1 | -0/+6 | ||
| | | ||||||
| * | Loader: Removed unused CXI and DAT loading code. | 2014-06-16 | 1 | -76/+0 | ||
| | | ||||||
| * | Merge branch 'threading' of https://github.com/bunnei/citra | 2014-06-14 | 36 | -1155/+1194 | ||
| |\ | | | | | | | | | | | Conflicts: src/core/hle/function_wrappers.h src/core/hle/service/gsp.cpp | |||||
| | * | Kernel: Removed unnecessary "#pragma once". | 2014-06-13 | 1 | -2/+0 | ||
| | | | ||||||
| | * | Kernel: Added freeing of kernel objects on emulator shutdown. | 2014-06-13 | 3 | -0/+13 | ||
| | | | ||||||
| | * | Event: Updated several log messages to be assertions. | 2014-06-13 | 1 | -16/+8 | ||
| | | | ||||||
| | * | HLE: Moved "PARAM" and "RETURN" macros to function_wrappers.h (this is only ↵ | 2014-06-13 | 2 | -5/+6 | ||
| | | | | | | | | | module where they are needed). | |||||
| | * | SVC: Renamed all function wrapper templates to Wrap, moved to HLE namespace. | 2014-06-13 | 2 | -157/+145 | ||
| | | | ||||||
| | * | Thread: Renamed occurrences of "t" to "thread" to improve readability. | 2014-06-13 | 1 | -48/+45 | ||
| | | | ||||||
| | * | Thread: Cleaned up VerifyWait, fixed issue where nullptr msg could ↵ | 2014-06-13 | 1 | -9/+7 | ||
| | | | | | | | | | unnecessarily be logged. | |||||
| | * | HLE: Removed usnused EatCycles function. | 2014-06-13 | 3 | -15/+0 | ||
| | | | ||||||
| | * | SVC: Cleaned up function wrappers to pass in correct argument types. | 2014-06-13 | 2 | -870/+201 | ||
| | | | ||||||
| | * | Thread: Moved position of * in arguments. | 2014-06-13 | 1 | -2/+2 | ||
| | | | ||||||
| | * | Thread: Updated VerifyWait to be more readable (but functionally the same). | 2014-06-13 | 1 | -4/+3 | ||
| | | | ||||||
| | * | SVC: Moved declaration of "wait" variable in SendSyncRequest for improved ↵ | 2014-06-13 | 1 | -1/+1 | ||
| | | | | | | | | | readability. | |||||
| | * | HLE: Updated all uses of NULL to nullptr (to be C++11 compliant) | 2014-06-13 | 13 | -239/+239 | ||
| | | | ||||||
| | * | Kernel: Updated various kernel function "name" arguments to be const references. | 2014-06-13 | 4 | -6/+6 | ||
| | | | ||||||
| | * | HLE: Updated various handle debug assertions to be more clear. | 2014-06-13 | 4 | -10/+10 | ||
| | | | ||||||
| | * | Mutex: Moved ReleaseMutex iterator declaration to be inside while loop. | 2014-06-13 | 1 | -2/+1 | ||
| | | | ||||||
| | * | Kernel: Updated several member functions to be const | 2014-06-13 | 5 | -13/+13 | ||
| | | | ||||||
| | * | Core: Cleaned up SingleStep(), updated default LCD refresh to assume each ↵ | 2014-06-13 | 2 | -12/+14 | ||
| | | | | | | | | | instruction is ~3 cycles | |||||
| | * | Core: Changed HW update/thread reschedule to occur more frequently (assume ↵ | 2014-06-13 | 1 | -2/+2 | ||
| | | | | | | | | | each instruction is ~3 cycles) | |||||
| | * | Thread: Fixed bug with ResetThread where cpu_registers[15] was being ↵ | 2014-06-13 | 1 | -1/+1 | ||
| | | | | | | | | | incorrectly set | |||||
| | * | Kernel: Made SyncRequest not pure virtual, with a default implementation of ↵ | 2014-06-13 | 3 | -23/+4 | ||
| | | | | | | | | | error (as this is not required for all kernel objects) | |||||