aboutsummaryrefslogtreecommitdiff
path: root/src/core/loader
AgeCommit message (Collapse)Author
2016-05-21Loader: Split SMDH into its own header and import helpers from QGameListEmmanuel Gil Peyrot
Also rewrite Qt wrappers to use those.
2016-05-21CitraQt: Simplify the game list loader codeEmmanuel Gil Peyrot
2016-05-21Loader: Add a GetFileType method to get the type of a loaded fileEmmanuel Gil Peyrot
2016-05-21Loader, Frontends: Refactor loader creation and game loadingEmmanuel Gil Peyrot
This allows frontends to keep a single loader and use it multiple times e.g. for code loading and SMDH parsing.
2016-05-08Merge pull request #1766 from Subv/log_cpubunnei
Kernel/Threading: Warn when a thread can be scheduled in the Syscore (Core 1)
2016-05-07fixup simple type conversions where possibleAlexander Laties
2016-05-07Kernel/Threading: Warn when a thread can be scheduled in the Syscore (Core 1).Subv
We do not currently implement any cores other than the AppCore (Core 0).
2016-05-06fix:return proper errorwwylele
2016-05-04add icon & title to game listwwylele
2016-04-23ncch: Use correct format specifier (for long long uint)Sam Spilsbury
2016-04-16core: Clean out some unnecessary header includesLioncash
2016-04-14ncch:only decompress .code sectionwwylele
2016-04-05Merge pull request #1643 from MerryMage/make_uniqueMathew Maidment
Common: Remove Common::make_unique, use std::make_unique
2016-04-05Common: Remove Common::make_unique, use std::make_uniqueMerryMage
2016-03-21loader: Make MakeMagic constexprLioncash
2016-03-08Merge pull request #1344 from LittleWhite-tb/error-outputbunnei
Output errors in GUI
2016-03-08Improve error report from Init() functionsLittleWhite
Add error popup when citra initialization failed
2016-03-04Loader/NCCH: Log the program ID during loadingYuri Kunde Schlesner
This is useful for all sorts of things, but mainly to identify save folders more easily.
2016-03-03Display errors in GUI when loading ROM failedLittleWhite
2016-01-25elf: Don't cast away constLioncash
2015-10-20Merge pull request #1199 from Gareth422/encryption-checkbunnei
Loader: Implement NCCH encryption check
2015-10-10Loader: Change NCCH header types to be explicitly little-endianGareth Poole
2015-10-10Loader: Implement encryption checkGareth Poole
2015-10-09CitraQt, SkyEye, Loader, VideoCore: Remove newlines in LOG_* calls.Emmanuel Gil Peyrot
The LOG_* function itself already appends one.
2015-10-01Merge pull request #1095 from archshift/game-listbunnei
Initial implementation of a game list
2015-09-30Expose loader helper functions for identifying files.archshift
2015-09-21Implement 3dsx RomFSCruel
2015-09-10General: Fix up doxygen commentsLioncash
2015-08-15Properly indicate that CIA support is not implemented yetBenjamin Barenblat
Make `Loader::LoadFile` return an `ErrorNotImplemented` if you call it on a CIA file.
2015-08-15Give CIA file type a nameBenjamin Barenblat
Make `GetFileTypeString` return ‘CIA’ for CIA (CTR Importable Archive) files.
2015-07-25loader: Remove unnecessary else usagesLioncash
2015-07-19Core : Change variable typezawata
and fix various warnings
2015-07-13Loader: Fix variable type and remove unused variableYuri Kunde Schlesner
2015-07-13Loader: Remove unnecessary pointer indirection to IOFileYuri Kunde Schlesner
2015-07-13FS: Stream RomFS from file instead of loading all of it to memorycondut
2015-07-11Core: Properly configure address space when loading a binaryYuri Kunde Schlesner
The code now properly configures the process image to match the loaded binary segments (code, rodata, data) instead of just blindly allocating a large chunk of dummy memory.
2015-07-11Loader: Clean up 3dsx loader a bit, fixing a potential buffer overrunYuri Kunde Schlesner
2015-07-11Loader: Make 3dsx loader logs a bit less confusingYuri Kunde Schlesner
2015-07-10Merge pull request #876 from linkmauve/include-cleanupsYuri Kunde Schlesner
Cleanup includes, mostly in common
2015-07-08Loader: Remove log line causing warningaroulin
2015-06-28CitraQt: Cleanup includes.Emmanuel Gil Peyrot
2015-06-28Common: Cleanup key_map includes.Emmanuel Gil Peyrot
2015-06-28Common: Fix FileUtil includes, and everything relying on those.Emmanuel Gil Peyrot
2015-05-29Remove every trailing whitespace from the project (but externals).Emmanuel Gil Peyrot
2015-05-14Core/ResourceLimits: Implemented the basic structure of ResourceLimits.Subv
Implemented svcs GetResourceLimit, GetResourceLimitCurrentValues and GetResourceLimitLimitValues. Note that the resource limits do not currently keep track of used objects, since we have no way to distinguish between an object created by the application, and an object created by some HLE module once we're inside Kernel::T::Create.
2015-05-15Memmap: Re-organize memory function in two filesYuri Kunde Schlesner
memory.cpp/h contains definitions related to acessing memory and configuring the address space mem_map.cpp/h contains higher-level definitions related to configuring the address space accoording to the kernel and allocating memory.
2015-05-09Merge pull request #734 from yuriks/memmapTony Wasserka
Small memory map definitions cleanup
2015-05-09Loader: Add missing includeYuri Kunde Schlesner
2015-05-09Memory: Re-organize and rename memory area address constantsYuri Kunde Schlesner
2015-05-08Loader: Remove .bin file supportYuri Kunde Schlesner
It is of very limited practical utility currently, and will soon be impossible to support due to more accurate memory map emulation.