summaryrefslogtreecommitdiffstats
path: root/src/core/loader/nro.cpp (follow)
Commit message (Expand)AuthorAgeFilesLines
* vfs: Move vfs files to their own directoryFearlessTobi2024-01-251-1/+1
* loader: fix homebrew nro registrationLiam2024-01-131-6/+6
* fsp-srv: use program registry for SetCurrentProcessLiam2024-01-111-2/+4
* core: Rename patcher fileGPUCode2023-11-291-1/+1
* core: Define HAS_NCE macroGPUCode2023-11-251-3/+3
* Address some review commentsGPUCode2023-11-251-3/+3
* android: Add cpu bakend gui toggleGPUCode2023-11-251-1/+1
* arm: Implement native code execution backendLiam2023-11-251-5/+57
* kernel: Manually specify aslr region startLiam2023-11-251-1/+2
* core: improve debug workflowLiam2023-09-141-1/+2
* kernel: offset code entry point for 39-bit address space type (#11326)liamwhite2023-08-251-1/+1
* k_process: PageTable -> GetPageTableLiam2023-07-151-1/+1
* android: Add proper homebrew checkCharles Lombardo2023-06-101-1/+12
* code: dodge PAGE_SIZE #defineKyle Kienapfel2022-08-201-1/+1
* general: Convert source file copyright comments over to SPDXMorph2022-04-231-3/+2
* general: Make most settings a BasicSettinglat9nq2021-06-281-2/+2
* common: fs: Rework the Common Filesystem interface to make use of std::filesystem (#6270)Morph2021-05-261-1/+0
* hle: kernel: Rename Process to KProcess.bunnei2021-05-061-4/+4
* loader: Resolve instances of variable shadowingLioncash2021-04-271-7/+6
* common: Move settings to common from core.bunnei2021-04-151-1/+1
* hle: kernel: Migrate PageHeap/PageTable to KPageHeap/KPageTable.bunnei2021-02-191-1/+1
* hle: kernel: KThread: Reorganize thread priority defaults.bunnei2021-01-291-2/+2
* core: hle: kernel: Rename Thread to KThread.bunnei2021-01-291-1/+1
* core: Eliminate remaining usages of the global system instanceLioncash2020-11-271-5/+1
* core/CMakeLists: Make some warnings errorsLioncash2020-10-131-1/+1
* file_sys/romfs_factory: Eliminate usage of the global system accessorLioncash2020-09-171-2/+2
* core/loader: Remove dependencies on the global system instanceLioncash2020-09-161-2/+2
* loader: nro: Fix process initialization using ProgramMetadata default.bunnei2020-04-211-10/+13
* loader: elf/kip/nro: Updates for new VMM.bunnei2020-04-171-2/+2
* core: memory: Move to Core::Memory namespace.bunnei2020-04-171-2/+2
* yuzu: Port old usages of Filesystem namespace to FilesystemControllerZach Hilman2019-09-211-1/+3
* nro: Implement ReadControlDataNick Renieris2019-09-071-0/+9
* VM_Manager: Align allocated memory to 256bytesFernando Sahmkow2019-07-191-1/+1
* core/core: Move process execution start to System's Load()Lioncash2019-04-121-7/+7
* kernel/codeset: Make CodeSet's memory data member a regular std::vectorLioncash2019-03-221-1/+1
* kernel: Move CodeSet structure to its own source filesLioncash2019-03-201-0/+1
* loader/nro: Make the static LoadNro function internally linkedLioncash2018-12-031-4/+5
* loader/nro: Remove dependency on the System classLioncash2018-12-031-8/+6
* process: Make MirrorMemory take state to map new memory asZach Hilman2018-11-151-2/+5
* loader/nro: Call RegisterRomFS from LoadZach Hilman2018-10-291-0/+5
* nro: Make LoadNro method accessible outside of apploader code.bunnei2018-10-261-6/+15
* nro: Make LoadNro take a VfsFile by const referenceLioncash2018-10-151-5/+5
* kernel/process: Make CodeSet a regular non-inherited objectLioncash2018-10-121-12/+9
* nso/nro: Use default allocation size for arg_dataZach Hilman2018-10-071-6/+8
* cmd: Support passing game arguments from command lineZach Hilman2018-10-071-1/+1
* nso/nro: Add NSO arguments structure to data sectionZach Hilman2018-10-071-0/+13
* kernel/process: Make data member variables privateLioncash2018-09-301-1/+1
* loader: Make the Load() function take a process as a regular reference, not a SharedPtrLioncash2018-09-291-3/+3
* memory: Dehardcode the use of fixed memory range constantsLioncash2018-09-251-3/+4
* process/vm_manager: Amend API to allow reading parameters from NPDM metadataLioncash2018-09-241-5/+0
* kernel/thread: Include thread-related enums within the kernel namespaceLioncash2018-09-131-1/+1
* bktr: Fix missing includes and optimize styleZach Hilman2018-09-041-1/+1
* loader: Ignore patches on NRO and DRDZach Hilman2018-09-041-0/+5
* core/core: Replace includes with forward declarations where applicableLioncash2018-08-311-0/+1
* kernel: Eliminate kernel global stateLioncash2018-08-291-2/+4
* loader: Remove address mapping remnants from citraLioncash2018-08-151-1/+0
* loader: Add more descriptive errorsZach Hilman2018-08-101-5/+5
* kernel/process: Use accessors instead of class members for referencing segment arrayLioncash2018-08-031-1/+1
* nro: Replace inclusion with a forward declarationLioncash2018-07-231-0/+3
* nro: Make bracing consistentLioncash2018-07-231-10/+24
* NRO Assets and NACP file formatZach Hilman2018-07-231-1/+78
* loader/{nca, nro}: std::move VirtualFile in the constructors where applicableLioncash2018-07-201-1/+2
* loader/nro: Resolve sign mismatch warningsLioncash2018-07-191-1/+1
* Virtual Filesystem 2: Electric Boogaloo (#676)Zach Hilman2018-07-191-22/+10
* More improvements to GDBStub (#653)Hedges2018-07-131-0/+4
* Revert "Virtual Filesystem (#597)"bunnei2018-07-081-10/+22
* Virtual Filesystem (#597)Zach Hilman2018-07-061-22/+10
* Kernel: Use 0x2C as default main thread priority for homebrew and lone NRO/NSOsSubv2018-04-211-1/+1
* memory: Fix stack region.bunnei2018-03-311-1/+1
* kernel: Move stack region outside of application heap.bunnei2018-03-161-1/+1
* core: Move process creation out of global state.bunnei2018-03-141-3/+2
* Kernel: Store the program id in the Process class instead of the CodeSet class.Subv2018-03-021-2/+2
* Merge pull request #92 from gdkchan/nro_refactorbunnei2018-01-211-2/+2
|\
| * Fix NRO Entry Pointgdkchan2018-01-181-2/+2
* | loader: Clean up ctors and includes.bunnei2018-01-201-0/+4
* | loader: Refactor to also pass filepath into IdentifyType.bunnei2018-01-201-1/+1
|/
* Fix NRO loadinggdkchan2018-01-181-20/+9
* Remove relocation on NSO/NROgdkchan2018-01-171-9/+0
* yuzu: Update license text to be consistent across project.bunnei2018-01-131-1/+1
* core: Refactor MakeMagic usage and remove dead code.bunnei2017-10-151-3/+4
* Merge remote-tracking branch 'upstream/master' into nxbunnei2017-10-101-6/+6
* loader: Various improvements for NSO/NRO loaders.bunnei2017-10-101-14/+3
* loader: Add support for NRO, as well as various fixes and shared linker.bunnei2017-10-061-0/+173