summaryrefslogtreecommitdiffstats
path: root/src/core/loader/nro.cpp (unfollow)
Commit message (Expand)AuthorFilesLines
2022-08-20code: dodge PAGE_SIZE #defineKyle Kienapfel1-1/+1
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-3/+2
2021-06-28general: Make most settings a BasicSettinglat9nq1-2/+2
2021-05-26common: fs: Rework the Common Filesystem interface to make use of std::filesystem (#6270)Morph1-1/+0
2021-05-06hle: kernel: Rename Process to KProcess.bunnei1-4/+4
2021-04-27loader: Resolve instances of variable shadowingLioncash1-7/+6
2021-04-15common: Move settings to common from core.bunnei1-1/+1
2021-02-19hle: kernel: Migrate PageHeap/PageTable to KPageHeap/KPageTable.bunnei1-1/+1
2021-01-29hle: kernel: KThread: Reorganize thread priority defaults.bunnei1-2/+2
2021-01-29core: hle: kernel: Rename Thread to KThread.bunnei1-1/+1
2020-11-27core: Eliminate remaining usages of the global system instanceLioncash1-5/+1
2020-10-13core/CMakeLists: Make some warnings errorsLioncash1-1/+1
2020-09-17file_sys/romfs_factory: Eliminate usage of the global system accessorLioncash1-2/+2
2020-09-16core/loader: Remove dependencies on the global system instanceLioncash1-2/+2
2020-04-21loader: nro: Fix process initialization using ProgramMetadata default.bunnei1-10/+13
2020-04-17loader: elf/kip/nro: Updates for new VMM.bunnei1-2/+2
2020-04-17core: memory: Move to Core::Memory namespace.bunnei1-2/+2
2019-09-21yuzu: Port old usages of Filesystem namespace to FilesystemControllerZach Hilman1-1/+3
2019-09-07nro: Implement ReadControlDataNick Renieris1-0/+9
2019-07-19VM_Manager: Align allocated memory to 256bytesFernando Sahmkow1-1/+1
2019-04-12core/core: Move process execution start to System's Load()Lioncash1-7/+7
2019-03-22kernel/codeset: Make CodeSet's memory data member a regular std::vectorLioncash1-1/+1
2019-03-20kernel: Move CodeSet structure to its own source filesLioncash1-0/+1
2018-12-03loader/nro: Make the static LoadNro function internally linkedLioncash1-4/+5
2018-12-03loader/nro: Remove dependency on the System classLioncash1-8/+6
2018-11-15process: Make MirrorMemory take state to map new memory asZach Hilman1-2/+5
2018-10-29loader/nro: Call RegisterRomFS from LoadZach Hilman1-0/+5
2018-10-26nro: Make LoadNro method accessible outside of apploader code.bunnei1-6/+15
2018-10-15nro: Make LoadNro take a VfsFile by const referenceLioncash1-5/+5
2018-10-12kernel/process: Make CodeSet a regular non-inherited objectLioncash1-12/+9
2018-10-07nso/nro: Use default allocation size for arg_dataZach Hilman1-6/+8
2018-10-07cmd: Support passing game arguments from command lineZach Hilman1-1/+1
2018-10-07nso/nro: Add NSO arguments structure to data sectionZach Hilman1-0/+13
2018-09-30kernel/process: Make data member variables privateLioncash1-1/+1
2018-09-29loader: Make the Load() function take a process as a regular reference, not a SharedPtrLioncash1-3/+3
2018-09-25memory: Dehardcode the use of fixed memory range constantsLioncash1-3/+4
2018-09-24process/vm_manager: Amend API to allow reading parameters from NPDM metadataLioncash1-5/+0
2018-09-13kernel/thread: Include thread-related enums within the kernel namespaceLioncash1-1/+1
2018-09-04bktr: Fix missing includes and optimize styleZach Hilman1-1/+1
2018-09-04loader: Ignore patches on NRO and DRDZach Hilman1-0/+5
2018-08-31core/core: Replace includes with forward declarations where applicableLioncash1-0/+1
2018-08-29kernel: Eliminate kernel global stateLioncash1-2/+4
2018-08-15loader: Remove address mapping remnants from citraLioncash1-1/+0
2018-08-10loader: Add more descriptive errorsZach Hilman1-5/+5
2018-08-03kernel/process: Use accessors instead of class members for referencing segment arrayLioncash1-1/+1
2018-07-23nro: Replace inclusion with a forward declarationLioncash1-0/+3
2018-07-23nro: Make bracing consistentLioncash1-10/+24
2018-07-23NRO Assets and NACP file formatZach Hilman1-1/+78
2018-07-20loader/{nca, nro}: std::move VirtualFile in the constructors where applicableLioncash1-1/+2
2018-07-19loader/nro: Resolve sign mismatch warningsLioncash1-1/+1
2018-07-19Virtual Filesystem 2: Electric Boogaloo (#676)Zach Hilman1-22/+10
2018-07-13More improvements to GDBStub (#653)Hedges1-0/+4
2018-07-08Revert "Virtual Filesystem (#597)"bunnei1-10/+22
2018-07-06Virtual Filesystem (#597)Zach Hilman1-22/+10
2018-04-21Kernel: Use 0x2C as default main thread priority for homebrew and lone NRO/NSOsSubv1-1/+1
2018-03-31memory: Fix stack region.bunnei1-1/+1
2018-03-16kernel: Move stack region outside of application heap.bunnei1-1/+1
2018-03-14core: Move process creation out of global state.bunnei1-3/+2
2018-03-02Kernel: Store the program id in the Process class instead of the CodeSet class.Subv1-2/+2
2018-01-20loader: Clean up ctors and includes.bunnei1-0/+4
2018-01-20loader: Refactor to also pass filepath into IdentifyType.bunnei1-1/+1
2018-01-18Fix NRO Entry Pointgdkchan1-2/+2
2018-01-18Fix NRO loadinggdkchan1-20/+9
2018-01-17Remove relocation on NSO/NROgdkchan1-9/+0
2018-01-13yuzu: Update license text to be consistent across project.bunnei1-1/+1
2017-10-15core: Refactor MakeMagic usage and remove dead code.bunnei1-3/+4
2017-10-10loader: Various improvements for NSO/NRO loaders.bunnei1-14/+3
2017-10-06loader: Add support for NRO, as well as various fixes and shared linker.bunnei1-0/+173