Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | nso: Silence implicit sign conversion warnings | Lioncash | 2018-07-20 | 1 | -4/+6 |
| | |||||
* | nso: Remove unused function ReadSegment() | Lioncash | 2018-07-20 | 1 | -13/+0 |
| | |||||
* | Merge pull request #718 from lioncash/read | bunnei | 2018-07-20 | 1 | -4/+6 |
|\ | | | | | loader/nso: Check if read succeeded in IdentifyFile() before checking magic value | ||||
| * | loader/nso: Check if read succeeded in IdentifyFile() before checking magic value | Lioncash | 2018-07-19 | 1 | -4/+6 |
| | | | | | | | | | | | | We should always assume the filesystem is volatile and check each IO operation. While we're at it reorganize checks so that early-out errors are near one another. | ||||
* | | loader/nso: Remove unnecessary vector resizes | Lioncash | 2018-07-19 | 1 | -4/+2 |
| | | | | | | | | We can just initialize these vectors directly via their constructor. | ||||
* | | loader/nso: Resolve sign mismatch warnings | Lioncash | 2018-07-19 | 1 | -1/+1 |
|/ | |||||
* | Virtual Filesystem 2: Electric Boogaloo (#676) | Zach Hilman | 2018-07-19 | 1 | -76/+17 |
| | | | | | | | | | | * Virtual Filesystem * Fix delete bug and documentate * Review fixes + other stuff * Fix puyo regression | ||||
* | General Filesystem and Save Data Fixes (#670) | Zach Hilman | 2018-07-17 | 1 | -1/+1 |
| | |||||
* | More improvements to GDBStub (#653) | Hedges | 2018-07-13 | 1 | -0/+4 |
| | | | | | | | | | | | * More improvements to GDBStub - Debugging of threads should work correctly with source and assembly level stepping and modifying registers and memory, meaning threads and callstacks are fully clickable in VS. - List of modules is available to the client, with assumption that .nro and .nso are backed up by an .elf with symbols, while deconstructed ROMs keep N names. - Initial support for floating point registers. * Tidy up as requested in PR feedback * Tidy up as requested in PR feedback | ||||
* | Revert "Virtual Filesystem (#597)" | bunnei | 2018-07-08 | 1 | -16/+75 |
| | | | | This reverts commit 77c684c1140f6bf3fb7d4560d06d2efb1a2ee5e2. | ||||
* | Virtual Filesystem (#597) | Zach Hilman | 2018-07-06 | 1 | -75/+16 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add VfsFile and VfsDirectory classes * Finish abstract Vfs classes * Implement RealVfsFile (computer fs backend) * Finish RealVfsFile and RealVfsDirectory * Finished OffsetVfsFile * More changes * Fix import paths * Major refactor * Remove double const * Use experimental/filesystem or filesystem depending on compiler * Port partition_filesystem * More changes * More Overhaul * FSP_SRV fixes * Fixes and testing * Try to get filesystem to compile * Filesystem on linux * Remove std::filesystem and document/test * Compile fixes * Missing include * Bug fixes * Fixes * Rename v_file and v_dir * clang-format fix * Rename NGLOG_* to LOG_* * Most review changes * Fix TODO * Guess 'main' to be Directory by filename | ||||
* | Rename logging macro back to LOG_* | James Rowe | 2018-07-03 | 1 | -2/+2 |
| | |||||
* | Add support for decrypted NCA files (#567) | Zach Hilman | 2018-06-21 | 1 | -11/+68 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Start to add NCA support in loader * More nca stuff * More changes to nca.cpp * Now identifies decrypted NCA cont. * Game list fixes and more structs and stuff * More updates to Nca class * Now reads ExeFs (i think) * ACTUALLY LOADS EXEFS! * RomFS loads and games execute * Cleanup and Finalize * plumbing, cleanup and testing * fix some things that i didnt think of before * Preliminary Review Changes * Review changes for bunnei and subv | ||||
* | general: Make formatting of logged hex values more straightforward | Lioncash | 2018-05-02 | 1 | -1/+1 |
| | | | | | | This makes the formatting expectations more obvious (e.g. any zero padding specified is padding that's entirely dedicated to the value being printed, not any pretty-printing that also gets tacked on). | ||||
* | general: Convert assertion macros over to be fmt-compatible | Lioncash | 2018-04-27 | 1 | -1/+1 |
| | |||||
* | loader: Move old logging macros over to new fmt-capable ones | Lioncash | 2018-04-25 | 1 | -3/+2 |
| | |||||
* | Kernel: Use 0x2C as default main thread priority for homebrew and lone NRO/NSOs | Subv | 2018-04-21 | 1 | -1/+1 |
| | |||||
* | memory: Fix stack region. | bunnei | 2018-03-31 | 1 | -1/+1 |
| | |||||
* | kernel: Move stack region outside of application heap. | bunnei | 2018-03-16 | 1 | -1/+1 |
| | |||||
* | core: Move process creation out of global state. | bunnei | 2018-03-14 | 1 | -3/+2 |
| | |||||
* | Kernel: Store the program id in the Process class instead of the CodeSet class. | Subv | 2018-03-02 | 1 | -4/+4 |
| | | | | There may be many CodeSets per Process, so it's wasteful and overcomplicated to store the program id in each of them. | ||||
* | loader: Check error on NPDM load, use TID for CodeSet | shinyquagsire23 | 2018-02-25 | 1 | -3/+3 |
| | |||||
* | nso: Silence formatting specifier warnings | Lioncash | 2018-02-14 | 1 | -2/+4 |
| | |||||
* | loader: Clean up ctors and includes. | bunnei | 2018-01-20 | 1 | -0/+4 |
| | |||||
* | loader: Refactor to also pass filepath into IdentifyType. | bunnei | 2018-01-20 | 1 | -2/+1 |
| | |||||
* | nso: Remove code specific to directory loading. | bunnei | 2018-01-20 | 1 | -16/+4 |
| | |||||
* | Remove relocation on NSO/NRO | gdkchan | 2018-01-17 | 1 | -9/+1 |
| | |||||
* | Merge pull request #44 from Rozelette/master | bunnei | 2018-01-16 | 1 | -3/+7 |
|\ | | | | | nso: Modify .bss size calculation logic | ||||
| * | nso: Modify .bss size calculation logic | Rozlette | 2018-01-16 | 1 | -3/+7 |
| | | |||||
* | | clang-format | MerryMage | 2018-01-16 | 1 | -1/+2 |
|/ | |||||
* | nso: Load subsdk4 if available. | bunnei | 2018-01-15 | 1 | -1/+1 |
| | |||||
* | yuzu: Update license text to be consistent across project. | bunnei | 2018-01-13 | 1 | -1/+1 |
| | |||||
* | nso: Always load the filepath specified by the user. | bunnei | 2018-01-07 | 1 | -1/+3 |
| | |||||
* | nso: Load more common submodules. | bunnei | 2017-10-23 | 1 | -15/+11 |
| | |||||
* | memory: Support 32-bit paging, move heap address space up. | bunnei | 2017-10-23 | 1 | -1/+1 |
| | |||||
* | core: Refactor MakeMagic usage and remove dead code. | bunnei | 2017-10-15 | 1 | -3/+4 |
| | |||||
* | nso: Add a log for loading submodules. | bunnei | 2017-10-14 | 1 | -0/+1 |
| | |||||
* | Merge remote-tracking branch 'upstream/master' into nx | bunnei | 2017-10-10 | 1 | -6/+6 |
| | | | | | | | | | | | | | | | | | # Conflicts: # src/core/CMakeLists.txt # src/core/arm/dynarmic/arm_dynarmic.cpp # src/core/arm/dyncom/arm_dyncom.cpp # src/core/hle/kernel/process.cpp # src/core/hle/kernel/thread.cpp # src/core/hle/kernel/thread.h # src/core/hle/kernel/vm_manager.cpp # src/core/loader/3dsx.cpp # src/core/loader/elf.cpp # src/core/loader/ncch.cpp # src/core/memory.cpp # src/core/memory.h # src/core/memory_setup.h | ||||
* | loader: Various improvements for NSO/NRO loaders. | bunnei | 2017-10-10 | 1 | -26/+24 |
| | |||||
* | loader: Add support for NRO, as well as various fixes and shared linker. | bunnei | 2017-10-06 | 1 | -128/+15 |
| | |||||
* | nso: Fixes to support homebrew NSOs without a MOD header. | bunnei | 2017-10-04 | 1 | -16/+22 |
| | |||||
* | nso: Refactor and allocate .bss section. | bunnei | 2017-09-30 | 1 | -112/+111 |
| | |||||
* | loader: Add support for loading an NSO. | bunnei | 2017-09-30 | 1 | -0/+295 |