| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | GSP: Clean up GX command processing a lot and treat command id as a u8 ↵ | 2014-07-23 | 2 | -37/+79 | |
| | | | | | | | rather than a u32. Anonymous structs are not standard C++, hence don't use them. | ||||
| * | RegisterSet: Simplify code by using structs for register definition instead ↵ | 2014-07-23 | 2 | -133/+123 | |
| | | | | | of unions. | ||||
| * | GPU: Make use of RegisterSet. | 2014-07-23 | 3 | -327/+200 | |
| | | |||||
| * | GPU: Make framebuffer code format-aware. | 2014-07-23 | 1 | -6/+47 | |
| | | |||||
| * | GPU: Interface cleanup. | 2014-07-23 | 2 | -13/+20 | |
| | | |||||
| * | GPU: Initialize GPU registers to some sensible default state. | 2014-07-23 | 1 | -1/+16 | |
| | | |||||
| * | GPU: Emulate memory fills. | 2014-07-23 | 4 | -3/+89 | |
| | | |||||
| * | GPU: Add proper framebuffer register handling. | 2014-07-23 | 2 | -11/+105 | |
| | | |||||
| * | GPU: Properly implement display transfers. | 2014-07-23 | 1 | -1/+19 | |
| | | |||||
| * | GPU: Add display transfer configuration. | 2014-07-23 | 2 | -0/+92 | |
| | | |||||
| * | GSP: HLE GXCommandId::SET_DISPLAY_TRANSFER and GXCommandId::SET_TEXTURE_COPY. | 2014-07-23 | 2 | -2/+17 | |
| | | |||||
| * | GSP: Implement ReadHWRegs and WriteHWRegs properly. | 2014-07-23 | 1 | -27/+46 | |
| | | |||||
| * | Use a more compatible choice of initial framebuffer addresses. | 2014-07-22 | 1 | -10/+22 | |
| | | |||||
| * | core: Kill off type redefenitions in armdefs.h | 2014-07-19 | 1 | -7/+0 | |
| | | |||||
| * | Kernel: Added preliminary support for address arbiters. | 2014-07-08 | 7 | -9/+144 | |
| | | | | | | | | | AddressArbiter: Added documentation comment, fixed whitespace issue. AddressArbiter: Fixed incorrect comment, reordered if-statement to be more clear. SVC: Removed trailing whitespace. | ||||
| * | Thread: Added functions to resume threads from address arbitration. | 2014-07-08 | 2 | -0/+44 | |
| | | | | | | | Thread: Cleaned up arbitrate address functions. Thread: Cleaned up ArbitrateAllThreads function. | ||||
| * | function_wrappers: Fixed incorrect wrapper, added another. | 2014-07-07 | 1 | -2/+9 | |
| | | |||||
| * | SharedMemory: Updated MapSharedMemory to use an enum for permissions. | 2014-07-05 | 3 | -16/+36 | |
| | | | | | - Also added some safety checks to MapSharedMemory. | ||||
| * | Memory: Removed deprecated MapBlock_Shared function. | 2014-07-05 | 2 | -30/+0 | |
| | | |||||
| * | GSP: Fixed to use real shared memory object, various cleanups. | 2014-07-05 | 2 | -30/+40 | |
| | | | | | | | | | - Previously, used a hard-coded shared memory handle of 0x10002000 (as used by libctru homebrew) GSP: Added name for shared memory. GSP: Cleaned up assertion message. | ||||
| * | 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 | |
| | | | |||||