Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove empty newlines in #include blocks. | Emmanuel Gil Peyrot | 2016-09-21 | 1 | -1/+0 |
| | | | | | | | This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation. | ||||
* | Manually tweak source formatting and then re-run clang-format | Yuri Kunde Schlesner | 2016-09-19 | 1 | -4/+2 |
| | |||||
* | Sources: Run clang-format on everything. | Emmanuel Gil Peyrot | 2016-09-18 | 1 | -4/+7 |
| | |||||
* | Loader: Split SMDH into its own header and import helpers from QGameList | Emmanuel Gil Peyrot | 2016-05-21 | 1 | -47/+0 |
| | | | | Also rewrite Qt wrappers to use those. | ||||
* | CitraQt: Simplify the game list loader code | Emmanuel Gil Peyrot | 2016-05-21 | 1 | -11/+1 |
| | |||||
* | Loader: Add a GetFileType method to get the type of a loaded file | Emmanuel Gil Peyrot | 2016-05-21 | 1 | -0/+6 |
| | |||||
* | Loader, Frontends: Refactor loader creation and game loading | Emmanuel Gil Peyrot | 2016-05-21 | 1 | -3/+3 |
| | | | | | This allows frontends to keep a single loader and use it multiple times e.g. for code loading and SMDH parsing. | ||||
* | add icon & title to game list | wwylele | 2016-05-04 | 1 | -0/+57 |
| | |||||
* | loader: Make MakeMagic constexpr | Lioncash | 2016-03-21 | 1 | -1/+1 |
| | |||||
* | Loader: Implement encryption check | Gareth Poole | 2015-10-11 | 1 | -0/+1 |
| | |||||
* | Expose loader helper functions for identifying files. | archshift | 2015-10-01 | 1 | -0/+28 |
| | |||||
* | Loader: Remove unnecessary pointer indirection to IOFile | Yuri Kunde Schlesner | 2015-07-14 | 1 | -8/+8 |
| | |||||
* | FS: Stream RomFS from file instead of loading all of it to memory | condut | 2015-07-14 | 1 | -2/+5 |
| | |||||
* | CitraQt: Cleanup includes. | Emmanuel Gil Peyrot | 2015-06-28 | 1 | -1/+6 |
| | |||||
* | Common: Cleanup key_map includes. | Emmanuel Gil Peyrot | 2015-06-28 | 1 | -0/+1 |
| | |||||
* | Loader: Remove .bin file support | Yuri Kunde Schlesner | 2015-05-09 | 1 | -1/+0 |
| | | | | | It is of very limited practical utility currently, and will soon be impossible to support due to more accurate memory map emulation. | ||||
* | Process: Rename StaticAddressMapping => AddressMapping | Yuri Kunde Schlesner | 2015-05-09 | 1 | -1/+1 |
| | |||||
* | Kernel: Introduce skeleton Process class to hold process data | Yuri Kunde Schlesner | 2015-05-09 | 1 | -0/+8 |
| | |||||
* | Common: Remove common.h | Yuri Kunde Schlesner | 2015-05-07 | 1 | -1/+1 |
| | |||||
* | core: Fix some warnings on OSX | Lioncash | 2015-02-03 | 1 | -1/+1 |
| | |||||
* | Loader: Guess filetype from the magic, or fallback to the extension. | Emmanuel Gil Peyrot | 2015-01-15 | 1 | -7/+4 |
| | |||||
* | Loader: Keep a reference to the file and pass it to the correct AppLoader, instead of loading it multiple times. | Emmanuel Gil Peyrot | 2015-01-15 | 1 | -1/+6 |
| | |||||
* | License change | purpasmart96 | 2014-12-21 | 1 | -1/+1 |
| | |||||
* | Loader: Add 3DSX support | ichfly | 2014-12-08 | 1 | -0/+1 |
| | |||||
* | Loader: Added support for loading raw BIN executables. | bunnei | 2014-08-28 | 1 | -0/+1 |
| | | | | | | - Useful for debugging homebrew Qt: Updated GUI to support loading .bin files. | ||||
* | NCCH: Updated ExeFS memory allocation to be safer. | bunnei | 2014-07-05 | 1 | -0/+1 |
| | |||||
* | Loader: Updated read methods to be const | bunnei | 2014-07-05 | 1 | -5/+5 |
| | | | | - Required "file" handle to be made local and explicitly opened/closed as needed | ||||
* | Loader: Refactored interface such that data is no longer stored by loader. | bunnei | 2014-06-27 | 1 | -33/+21 |
| | | | | NCCH: Removed extra qualification ‘Loader::AppLoader_NCCH::’. | ||||
* | Loader: Refactored loading functions to only read data from binary if called. | bunnei | 2014-06-25 | 1 | -8/+8 |
| | | | | NCCH: Updated LoadExec to use Memory::WriteBlock function to load binary code. | ||||
* | Loader: Refactored use of const. | bunnei | 2014-06-25 | 1 | -3/+3 |
| | |||||
* | NCCH: Fixes reduce unnecessary logging and load logo/banner/etc. sections correctly. | bunnei | 2014-06-25 | 1 | -0/+1 |
| | | | | Loader: Added ErrorNotUsed ReturnStatus type to specify when something is not used. | ||||
* | Loader: Implemented AppLoader interface for abstracting application loading. | bunnei | 2014-06-25 | 1 | -12/+91 |
| | | | | | | | | | | | | | | | | | | - 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. | ||||
* | Loader: Cleaned up and removed unused code, refactored ELF namespace. | bunnei | 2014-06-17 | 1 | -14/+1 |
| | |||||
* | Loader: Moved elf and loader modules to a "loader" subdirectory. | bunnei | 2014-06-17 | 1 | -0/+54 |