| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-08-05 | MemMap: Added an error for unaligned 16-bit memory reads. | bunnei | |
| 2014-08-05 | MemMap: Removed Read64 function. | bunnei | |
| - Unused code - Was not correct for unaligned memory reads | |||
| 2014-08-05 | FS: Fix port name (old port name was based on an unaligned memory read). | bunnei | |
| 2014-08-05 | MemMap: Fix Read32 for unaligned memory reads. | bunnei | |
| MemMap: Cleaned up Read32 unaligned memory access. | |||
| 2014-07-23 | ARM: Synchronize Citra's SkyEye core with 3dmoo's. | bunnei | |
| 2014-07-23 | Use uniform formatting when printing hexadecimal numbers. | Tony Wasserka | |
| 2014-07-23 | Fix a few warnings. | Tony Wasserka | |
| Templates shouldn't be marked as inline if they aren't defined in the header. | |||
| 2014-07-23 | GPU: Clarify display transfer code. | Tony Wasserka | |
| Also makes the illogical component order more obvious. | |||
| 2014-07-23 | GPU: Add documentation. | Tony Wasserka | |
| 2014-07-23 | GSP: Add a few comments. | Tony Wasserka | |
| 2014-07-23 | GSP: Clean up GX command processing a lot and treat command id as a u8 ↵ | Tony Wasserka | |
| rather than a u32. Anonymous structs are not standard C++, hence don't use them. | |||
| 2014-07-23 | RegisterSet: Simplify code by using structs for register definition instead ↵ | Tony Wasserka | |
| of unions. | |||
| 2014-07-23 | GPU: Make use of RegisterSet. | Tony Wasserka | |
| 2014-07-23 | GPU: Make framebuffer code format-aware. | Tony Wasserka | |
| 2014-07-23 | GPU: Interface cleanup. | Tony Wasserka | |
| 2014-07-23 | GPU: Initialize GPU registers to some sensible default state. | Tony Wasserka | |
| 2014-07-23 | GPU: Emulate memory fills. | Tony Wasserka | |
| 2014-07-23 | GPU: Add proper framebuffer register handling. | Tony Wasserka | |
| 2014-07-23 | GPU: Properly implement display transfers. | Tony Wasserka | |
| 2014-07-23 | GPU: Add display transfer configuration. | Tony Wasserka | |
| 2014-07-23 | GSP: HLE GXCommandId::SET_DISPLAY_TRANSFER and GXCommandId::SET_TEXTURE_COPY. | Tony Wasserka | |
| 2014-07-23 | GSP: Implement ReadHWRegs and WriteHWRegs properly. | Tony Wasserka | |
| 2014-07-22 | Use a more compatible choice of initial framebuffer addresses. | Tony Wasserka | |
| 2014-07-19 | core: Kill off type redefenitions in armdefs.h | Lioncash | |
| 2014-07-08 | Kernel: Added preliminary support for address arbiters. | bunnei | |
| AddressArbiter: Added documentation comment, fixed whitespace issue. AddressArbiter: Fixed incorrect comment, reordered if-statement to be more clear. SVC: Removed trailing whitespace. | |||
| 2014-07-08 | Thread: Added functions to resume threads from address arbitration. | bunnei | |
| Thread: Cleaned up arbitrate address functions. Thread: Cleaned up ArbitrateAllThreads function. | |||
| 2014-07-07 | function_wrappers: Fixed incorrect wrapper, added another. | bunnei | |
| 2014-07-05 | SharedMemory: Updated MapSharedMemory to use an enum for permissions. | bunnei | |
| - Also added some safety checks to MapSharedMemory. | |||
| 2014-07-05 | Memory: Removed deprecated MapBlock_Shared function. | bunnei | |
| 2014-07-05 | GSP: Fixed to use real shared memory object, various cleanups. | bunnei | |
| - 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. | |||
| 2014-07-05 | Kernel: Added support for shared memory objects. | bunnei | |
| SharedMemory: Added optional name field for tracking known objects. | |||
| 2014-07-04 | mem_map: Updated interface to expose template functions to other modules. | bunnei | |
| 2014-07-04 | NCCH: Updated ExeFS memory allocation to be safer. | bunnei | |
| 2014-07-04 | Archive: Added Init/Shutdown methods to reset kernel archive state. | bunnei | |
| 2014-07-04 | Marked AppLoader_ELF, AppLoader_NCCH, and Archive_RomFS virtual functions as ↵ | bunnei | |
| "override". | |||
| 2014-07-04 | Marked AppLoader_ELF, AppLoader_NCCH, and Archive_RomFS classes as "final" | bunnei | |
| 2014-07-04 | Loader: Updated read methods to be const | bunnei | |
| - Required "file" handle to be made local and explicitly opened/closed as needed | |||
| 2014-07-04 | FileSys: Added preliminary support for applications reading the RomFS archive. | bunnei | |
| 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. | |||
| 2014-07-04 | APT: Added stubbed ReceiveParameter and various cleanups. | bunnei | |
| APT: More cleanups. APT: Changed SignalType to be type u32. | |||
| 2014-06-27 | Loader: Refactored interface such that data is no longer stored by loader. | bunnei | |
| NCCH: Removed extra qualification ‘Loader::AppLoader_NCCH::’. | |||
| 2014-06-27 | FS: Added stubbed code to intercept and decode file system service functions. | bunnei | |
| FS: Added to CMakeLists.txt | |||
| 2014-06-27 | Kernel: Added stubbed code to support creation of kernel Archive objects. | bunnei | |
| 2014-06-27 | Core: Removed unused directory_file_system and meta_file_system modules. | bunnei | |
| Core: Updated CMakeLists.txt to remove directory_file_system and meta_file_system modules. | |||
| 2014-06-24 | Loader: Refactored loading functions to only read data from binary if called. | bunnei | |
| NCCH: Updated LoadExec to use Memory::WriteBlock function to load binary code. | |||
| 2014-06-24 | MemMap: Added a WriteBlock function to write a buffer of data to memory. | bunnei | |
| 2014-06-24 | ELF: Refactored LoadInto(..) to use memcpy, removed unnecessary code. | bunnei | |
| 2014-06-24 | Loader: Refactored use of const. | bunnei | |
| 2014-06-24 | NCCH: Added RomFS loading. | bunnei | |
| 2014-06-24 | NCCH: Fixes reduce unnecessary logging and load logo/banner/etc. sections ↵ | bunnei | |
| correctly. Loader: Added ErrorNotUsed ReturnStatus type to specify when something is not used. | |||
| 2014-06-24 | Loader: Implemented AppLoader interface for abstracting application loading. | bunnei | |
| - 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. | |||
