aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/loader
Commit message (Collapse)AuthorAge
* Remove every trailing whitespace from the project (but externals).Gravatar Emmanuel Gil Peyrot2015-05-29
|
* Core/ResourceLimits: Implemented the basic structure of ResourceLimits.Gravatar Subv2015-05-14
| | | | | | 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.
* Memmap: Re-organize memory function in two filesGravatar Yuri Kunde Schlesner2015-05-15
| | | | | | | 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.
* Merge pull request #734 from yuriks/memmapGravatar Tony Wasserka2015-05-09
|\ | | | | Small memory map definitions cleanup
* | Loader: Add missing includeGravatar Yuri Kunde Schlesner2015-05-09
| |
| * Memory: Re-organize and rename memory area address constantsGravatar Yuri Kunde Schlesner2015-05-09
|/
* Loader: Remove .bin file supportGravatar Yuri Kunde Schlesner2015-05-08
| | | | | 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 => AddressMappingGravatar Yuri Kunde Schlesner2015-05-08
|
* Loader/NCCH: Fix formatting of bracesGravatar Yuri Kunde Schlesner2015-05-08
|
* Process: Support parsing of exheader kernel capsGravatar Yuri Kunde Schlesner2015-05-08
|
* Kernel: Remove g_program_idGravatar Yuri Kunde Schlesner2015-05-08
| | | | This has been obsoleted by the field in Process.
* Kernel: Introduce skeleton Process class to hold process dataGravatar Yuri Kunde Schlesner2015-05-08
|
* Common: Remove common.hGravatar Yuri Kunde Schlesner2015-05-07
|
* Services/Loader: Use more sensible log formats for certain functionsGravatar purpasmart962015-04-27
| | | | along with more info being logged.
* NCCH: Minor updates to the ncch headerGravatar purpasmart962015-03-15
|
* Build: Fixed some warningsGravatar Subv2015-02-12
|
* FS: Allow multiple instances of the same archive type to be open at onceGravatar Yuri Kunde Schlesner2015-02-10
|
* core: Fix some warnings on OSXGravatar Lioncash2015-02-03
|
* Merge pull request #514 from rohit-n/fix-warningsGravatar bunnei2015-02-01
|\ | | | | Silence a few warnings.
| * Silence a few warnings.Gravatar Rohit Nirmal2015-01-30
| |
* | loader: Add missing printf argumentGravatar Lioncash2015-01-30
|/
* Loader: Clean up the ELF AppLoader.Gravatar Emmanuel Gil Peyrot2015-01-15
|
* Loader: Clean up the 3DSX AppLoader.Gravatar Emmanuel Gil Peyrot2015-01-15
|
* Loader: Clean up the NCCH AppLoader.Gravatar Emmanuel Gil Peyrot2015-01-15
|
* Loader: Display the type of the file being loaded.Gravatar Emmanuel Gil Peyrot2015-01-15
|
* Loader: Guess filetype from the magic, or fallback to the extension.Gravatar Emmanuel Gil Peyrot2015-01-15
|
* Loader: Don’t assume the file hasn’t been read before.Gravatar Emmanuel Gil Peyrot2015-01-15
|
* Loader: Keep a reference to the file and pass it to the correct AppLoader, ↵Gravatar Emmanuel Gil Peyrot2015-01-15
| | | | instead of loading it multiple times.
* Loader: Initialize the default NCCH values in the class declaration, not in ↵Gravatar Emmanuel Gil Peyrot2015-01-15
| | | | the constructor.
* Loader: Remove the useless THREEDSXReader class.Gravatar Emmanuel Gil Peyrot2015-01-15
|
* Loader: Never forget to change is_loaded.Gravatar Emmanuel Gil Peyrot2015-01-15
|
* Loader: Don’t duplicate the docstring into the cpp file.Gravatar Emmanuel Gil Peyrot2015-01-15
|
* Loader: Fix indentation, whitespace, and a few other such cosmetic stuff.Gravatar Emmanuel Gil Peyrot2015-01-15
|
* Fix correct espaceGravatar Dante384902015-01-05
|
* Add support load 3DS roomGravatar Dante384902015-01-05
|
* elf: Make DidRelocate constGravatar Lioncash2015-01-02
|
* Merge pull request #291 from purpasmart96/licenseGravatar bunnei2014-12-21
|\ | | | | License change
| * License changeGravatar purpasmart962014-12-20
| |
* | Merge pull request #315 from chinhodado/masterGravatar bunnei2014-12-20
|\ \ | | | | | | Clean up some warnings
| * | Clean up some warningsGravatar Chin2014-12-20
| |/
* / Common: Add a clone of std::make_uniqueGravatar Yuri Kunde Schlesner2014-12-20
|/
* Filesystem/Archives: Implemented the SaveData archiveGravatar Subv2014-12-17
| | | | | | | | | | The savedata for each game is stored in /savedata/<ProgramID> for NCCH files. ELF files and 3DSX files use the folder 0 because they have no ID information Got rid of the code duplication in File and Directory Files that deal with the host machine's file system now live in DiskFile, similarly for directories and DiskDirectory and archives with DiskArchive. FS_U: Use the correct error code when a file wasn't found
* FS.Archive: Clean up treatment of archives and their handlesGravatar Yuri Kunde Schlesner2014-12-16
| | | | | | | - Refactor FS::Archive internals to make Archive creation and lifetime management clearer. - Remove the "Archive as a File" hack. - Implement 64-bit Archive handles.
* Service.FS: Do archive registration using IdCode instead of nameGravatar Yuri Kunde Schlesner2014-12-16
|
* HLE: Rename namespaces to match move & fix initialization orderGravatar Yuri Kunde Schlesner2014-12-16
|
* HLE: Move kernel/archive.* to service/fs/Gravatar Yuri Kunde Schlesner2014-12-16
|
* Convert old logging calls to new logging macrosGravatar Yuri Kunde Schlesner2014-12-13
|
* Loader: Add 3DSX supportGravatar ichfly2014-12-08
|
* Remove trailing spaces in every file but the ones imported from SkyEye, AOSP ↵Gravatar Emmanuel Gil Peyrot2014-11-19
| | | | or generated
* core: Mark some hle functions as staticGravatar Lioncash2014-11-17
| | | | These functions are not referred to by their linkage name outside of the translation unit, so they can be marked as static.