aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
Commit message (Collapse)AuthorAge
* Elf: Renamed modules to be consistent with new loader naming, fixed tabs -> ↵Gravatar bunnei2014-06-16
| | | | spaces.
* Loader: Added support for booting NCCH executables.Gravatar bunnei2014-06-16
| | | | NCCH: Fixed typo in printing NCCH filename.
* Loader: Moved elf and loader modules to a "loader" subdirectory.Gravatar bunnei2014-06-16
|
* Loader: Added stubbed detection of CXI and CCI files.Gravatar bunnei2014-06-16
|
* Loader: Removed unused CXI and DAT loading code.Gravatar bunnei2014-06-16
|
* Merge branch 'threading' of https://github.com/bunnei/citraGravatar bunnei2014-06-14
|\ | | | | | | | | | | Conflicts: src/core/hle/function_wrappers.h src/core/hle/service/gsp.cpp
| * Kernel: Removed unnecessary "#pragma once".Gravatar bunnei2014-06-13
| |
| * Kernel: Added freeing of kernel objects on emulator shutdown.Gravatar bunnei2014-06-13
| |
| * Event: Updated several log messages to be assertions.Gravatar bunnei2014-06-13
| |
| * HLE: Moved "PARAM" and "RETURN" macros to function_wrappers.h (this is only ↵Gravatar bunnei2014-06-13
| | | | | | | | module where they are needed).
| * SVC: Renamed all function wrapper templates to Wrap, moved to HLE namespace.Gravatar bunnei2014-06-13
| |
| * Thread: Renamed occurrences of "t" to "thread" to improve readability.Gravatar bunnei2014-06-13
| |
| * Thread: Cleaned up VerifyWait, fixed issue where nullptr msg could ↵Gravatar bunnei2014-06-13
| | | | | | | | unnecessarily be logged.
| * HLE: Removed usnused EatCycles function.Gravatar bunnei2014-06-13
| |
| * SVC: Cleaned up function wrappers to pass in correct argument types.Gravatar bunnei2014-06-13
| |
| * Thread: Moved position of * in arguments.Gravatar bunnei2014-06-13
| |
| * Thread: Updated VerifyWait to be more readable (but functionally the same).Gravatar bunnei2014-06-13
| |
| * SVC: Moved declaration of "wait" variable in SendSyncRequest for improved ↵Gravatar bunnei2014-06-13
| | | | | | | | readability.
| * HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)Gravatar bunnei2014-06-13
| |
| * Kernel: Updated various kernel function "name" arguments to be const references.Gravatar bunnei2014-06-13
| |
| * HLE: Updated various handle debug assertions to be more clear.Gravatar bunnei2014-06-13
| |
| * Mutex: Moved ReleaseMutex iterator declaration to be inside while loop.Gravatar bunnei2014-06-13
| |
| * Kernel: Updated several member functions to be constGravatar bunnei2014-06-13
| |
| * Core: Cleaned up SingleStep(), updated default LCD refresh to assume each ↵Gravatar bunnei2014-06-13
| | | | | | | | instruction is ~3 cycles
| * Core: Changed HW update/thread reschedule to occur more frequently (assume ↵Gravatar bunnei2014-06-13
| | | | | | | | each instruction is ~3 cycles)
| * Thread: Fixed bug with ResetThread where cpu_registers[15] was being ↵Gravatar bunnei2014-06-13
| | | | | | | | incorrectly set
| * Kernel: Made SyncRequest not pure virtual, with a default implementation of ↵Gravatar bunnei2014-06-13
| | | | | | | | error (as this is not required for all kernel objects)
| * Kernel: Added real support for thread and event blockingGravatar bunnei2014-06-13
| | | | | | | | | | | | | | | | | | | | | | | | | | - SVC: Added ExitThread support - SVC: Added SignalEvent support - Thread: Added WAITTYPE_EVENT for waiting threads for event signals - Thread: Added support for blocking on other threads to finish (e.g. Thread::Join) - Thread: Added debug function for printing current threads ready for execution - Thread: Removed hack/broken thread ready state code from Kernel::Reschedule - Mutex: Moved WaitCurrentThread from SVC to Mutex::WaitSynchronization - Event: Added support for blocking threads on event signalling Kernel: Added missing algorithm #include for use of std::find on non-Windows platforms.
* | GPU debugger: Add functionality to inspect command lists.Gravatar Tony Wasserka2014-06-12
| |
* | GPU: Cleanup register definitions.Gravatar Tony Wasserka2014-06-12
| |
* | Rename LCD to GPU.Gravatar Tony Wasserka2014-06-12
| |
* | Add initial graphics debugger interface.Gravatar Tony Wasserka2014-06-12
| |
* | GSP: Define more GX commands.Gravatar Tony Wasserka2014-06-12
| |
* | Pica: Add command list registers.Gravatar Tony Wasserka2014-06-12
| |
| * hle: added a hokey way to force a thread reschedule during CPU single step ↵Gravatar bunnei2014-06-05
| | | | | | | | mode (as used by the debugger)
| * arm: fixed a bug where ARM_Interpreter::ExecuteInstructions was actually ↵Gravatar bunnei2014-06-05
| | | | | | | | executing one more instruction than expected
| * kernel: changed current default thread priority back to 0x30 - I think this ↵Gravatar bunnei2014-06-05
| | | | | | | | is more correct
| * arm: fixed bug in how thread context switch occurs with SkyEyeGravatar bunnei2014-06-05
| |
| * service: added a error log messages for unimplemented WaitSynchronizationGravatar bunnei2014-06-04
| |
| * arm: reverting a change made with cb0663de - this has to have been a typo!Gravatar bunnei2014-06-04
| |
| * svc: added optional name field to Event and Mutex (used for debugging)Gravatar bunnei2014-06-02
| |
| * kernel: moved position of * for GetTypeName and GetNameGravatar bunnei2014-06-02
| |
| * coprocessor: reenabled debug logGravatar bunnei2014-06-02
| |
| * svc: updated WaitSynchronizationN to properly use first pointer argumentGravatar bunnei2014-06-02
| |
| * svc: changed DuplicateHandle log message from "error" to "debug"Gravatar bunnei2014-06-01
| |
| * svc: added GetThreadPriority and SetThreadPriority, added (incomplete) ↵Gravatar bunnei2014-06-01
| | | | | | | | DuplicateHandle support
| * kernel: changed main thread priority to default, updated Kernel::Reschedule ↵Gravatar bunnei2014-06-01
| | | | | | | | to use PrepareReschedule
| * arm: added option to prepare CPU core (while mid-instruction) for thread ↵Gravatar bunnei2014-06-01
| | | | | | | | reschedule
| * svc: cleaned up function_wrappers, updated various SVCs to make use of ↵Gravatar bunnei2014-06-01
| | | | | | | | pointer arguments
* | Added 'this' reference to num_instructions field so it's properly updated,as ↵Gravatar Disruption2014-06-01
| | | | | | | | before the method was affecting the local method parameter rather than the class field