summaryrefslogtreecommitdiff
path: root/src/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
* GSP: Clean up GX command processing a lot and treat command id as a u8 ↵Gravatar Tony Wasserka2014-07-232-37/+79
| | | | | | rather than a u32. Anonymous structs are not standard C++, hence don't use them.
* RegisterSet: Simplify code by using structs for register definition instead ↵Gravatar Tony Wasserka2014-07-232-133/+123
| | | | of unions.
* GPU: Make use of RegisterSet.Gravatar Tony Wasserka2014-07-233-327/+200
|
* GPU: Make framebuffer code format-aware.Gravatar Tony Wasserka2014-07-231-6/+47
|
* GPU: Interface cleanup.Gravatar Tony Wasserka2014-07-232-13/+20
|
* GPU: Initialize GPU registers to some sensible default state.Gravatar Tony Wasserka2014-07-231-1/+16
|
* GPU: Emulate memory fills.Gravatar Tony Wasserka2014-07-234-3/+89
|
* GPU: Add proper framebuffer register handling.Gravatar Tony Wasserka2014-07-232-11/+105
|
* GPU: Properly implement display transfers.Gravatar Tony Wasserka2014-07-231-1/+19
|
* GPU: Add display transfer configuration.Gravatar Tony Wasserka2014-07-232-0/+92
|
* GSP: HLE GXCommandId::SET_DISPLAY_TRANSFER and GXCommandId::SET_TEXTURE_COPY.Gravatar Tony Wasserka2014-07-232-2/+17
|
* GSP: Implement ReadHWRegs and WriteHWRegs properly.Gravatar Tony Wasserka2014-07-231-27/+46
|
* Use a more compatible choice of initial framebuffer addresses.Gravatar Tony Wasserka2014-07-221-10/+22
|
* core: Kill off type redefenitions in armdefs.hGravatar Lioncash2014-07-191-7/+0
|
* Kernel: Added preliminary support for address arbiters.Gravatar bunnei2014-07-087-9/+144
| | | | | | | | AddressArbiter: Added documentation comment, fixed whitespace issue. AddressArbiter: Fixed incorrect comment, reordered if-statement to be more clear. SVC: Removed trailing whitespace.
* Thread: Added functions to resume threads from address arbitration.Gravatar bunnei2014-07-082-0/+44
| | | | | | Thread: Cleaned up arbitrate address functions. Thread: Cleaned up ArbitrateAllThreads function.
* function_wrappers: Fixed incorrect wrapper, added another.Gravatar bunnei2014-07-071-2/+9
|
* SharedMemory: Updated MapSharedMemory to use an enum for permissions.Gravatar bunnei2014-07-053-16/+36
| | | | - Also added some safety checks to MapSharedMemory.
* Memory: Removed deprecated MapBlock_Shared function.Gravatar bunnei2014-07-052-30/+0
|
* GSP: Fixed to use real shared memory object, various cleanups.Gravatar bunnei2014-07-052-30/+40
| | | | | | | | - Previously, used a hard-coded shared memory handle of 0x10002000 (as used by libctru homebrew) GSP: Added name for shared memory. GSP: Cleaned up assertion message.
* Kernel: Added support for shared memory objects.Gravatar bunnei2014-07-055-0/+142
| | | | SharedMemory: Added optional name field for tracking known objects.
* mem_map: Updated interface to expose template functions to other modules.Gravatar bunnei2014-07-042-10/+16
|
* NCCH: Updated ExeFS memory allocation to be safer.Gravatar bunnei2014-07-042-1/+7
|
* Archive: Added Init/Shutdown methods to reset kernel archive state.Gravatar bunnei2014-07-043-0/+19
|
* Marked AppLoader_ELF, AppLoader_NCCH, and Archive_RomFS virtual functions as ↵Gravatar bunnei2014-07-043-13/+13
| | | | "override".
* Marked AppLoader_ELF, AppLoader_NCCH, and Archive_RomFS classes as "final"Gravatar bunnei2014-07-043-3/+3
|
* Loader: Updated read methods to be constGravatar bunnei2014-07-045-68/+79
| | | | - Required "file" handle to be made local and explicitly opened/closed as needed
* FileSys: Added preliminary support for applications reading the RomFS archive.Gravatar bunnei2014-07-0411-160/+311
| | | | | | | | | | Archive: Fixed brace ugliness for neobrain :) FS: Commented out unused local variables to prevent warnings. ...But keeping them here for future use. archive_romfs: Removed unused #include.
* APT: Added stubbed ReceiveParameter and various cleanups.Gravatar bunnei2014-07-041-71/+93
| | | | | | APT: More cleanups. APT: Changed SignalType to be type u32.
* Loader: Refactored interface such that data is no longer stored by loader.Gravatar bunnei2014-06-273-96/+73
| | | | NCCH: Removed extra qualification ‘Loader::AppLoader_NCCH::’.
* FS: Added stubbed code to intercept and decode file system service functions.Gravatar bunnei2014-06-276-0/+164
| | | | FS: Added to CMakeLists.txt
* Kernel: Added stubbed code to support creation of kernel Archive objects.Gravatar bunnei2014-06-276-0/+95
|
* Core: Removed unused directory_file_system and meta_file_system modules.Gravatar bunnei2014-06-279-1477/+0
| | | | Core: Updated CMakeLists.txt to remove directory_file_system and meta_file_system modules.
* Loader: Refactored loading functions to only read data from binary if called.Gravatar bunnei2014-06-243-74/+141
| | | | NCCH: Updated LoadExec to use Memory::WriteBlock function to load binary code.
* MemMap: Added a WriteBlock function to write a buffer of data to memory.Gravatar bunnei2014-06-242-0/+14
|
* ELF: Refactored LoadInto(..) to use memcpy, removed unnecessary code.Gravatar bunnei2014-06-241-19/+8
|
* Loader: Refactored use of const.Gravatar bunnei2014-06-246-20/+19
|
* NCCH: Added RomFS loading.Gravatar bunnei2014-06-242-1/+36
|
* NCCH: Fixes reduce unnecessary logging and load logo/banner/etc. sections ↵Gravatar bunnei2014-06-243-22/+29
| | | | | | correctly. Loader: Added ErrorNotUsed ReturnStatus type to specify when something is not used.
* Loader: Implemented AppLoader interface for abstracting application loading.Gravatar bunnei2014-06-246-523/+672
| | | | | | | | | | | | | | | | | | - Various cleanups/refactorings to Loader, ELF, and NCCH modules. - Added AppLoader interface to ELF and NCCH. - Updated Qt/GLFW frontends to check AppLoader ResultStatus. NCCH: Removed extra qualification typos. Loader: Removed unnecessary #include's. NCCH: Improved readability of memcmp statements. NCCH: Added missing space. Elf: Removed unnecessary usage of unique_ptr. Loader: Removed unnecessary usage of unique_ptr.
* NCCH: Changed decompression to load .code directly into memory rather than ↵Gravatar bunnei2014-06-171-9/+3
| | | | an intermediate buffer.
* Elf: Removed unused macros, changed #include of "common.h" to just ↵Gravatar bunnei2014-06-171-117/+1
| | | | "common_types.h".
* Loader: Cleaned up and removed unused code, refactored ELF namespace.Gravatar bunnei2014-06-164-209/+70
|
* Elf: Renamed modules to be consistent with new loader naming, fixed tabs -> ↵Gravatar bunnei2014-06-168-372/+342
| | | | spaces.
* Loader: Added support for booting NCCH executables.Gravatar bunnei2014-06-166-0/+384
| | | | NCCH: Fixed typo in printing NCCH filename.
* Loader: Moved elf and loader modules to a "loader" subdirectory.Gravatar bunnei2014-06-168-30/+34
|
* Loader: Added stubbed detection of CXI and CCI files.Gravatar bunnei2014-06-161-0/+6
|
* Loader: Removed unused CXI and DAT loading code.Gravatar bunnei2014-06-161-76/+0
|
* Merge branch 'threading' of https://github.com/bunnei/citraGravatar bunnei2014-06-1436-1155/+1194
|\ | | | | | | | | | | Conflicts: src/core/hle/function_wrappers.h src/core/hle/service/gsp.cpp
| * Kernel: Removed unnecessary "#pragma once".Gravatar bunnei2014-06-131-2/+0
| |