summaryrefslogtreecommitdiff
path: root/src/core/hle (follow)
Commit message (Expand)AuthorAgeFilesLines
* GSP: Clean up GX command processing a lot and treat command id as a u8 rather...Gravatar Tony Wasserka2014-07-232-37/+79
* GPU: Make use of RegisterSet.Gravatar Tony Wasserka2014-07-231-21/+28
* GPU: Emulate memory fills.Gravatar Tony Wasserka2014-07-232-1/+9
* GSP: HLE GXCommandId::SET_DISPLAY_TRANSFER and GXCommandId::SET_TEXTURE_COPY.Gravatar Tony Wasserka2014-07-231-2/+9
* GSP: Implement ReadHWRegs and WriteHWRegs properly.Gravatar Tony Wasserka2014-07-231-27/+46
* Kernel: Added preliminary support for address arbiters.Gravatar bunnei2014-07-084-9/+134
* Thread: Added functions to resume threads from address arbitration.Gravatar bunnei2014-07-082-0/+44
* 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
* GSP: Fixed to use real shared memory object, various cleanups.Gravatar bunnei2014-07-052-30/+40
* Kernel: Added support for shared memory objects.Gravatar bunnei2014-07-052-0/+132
* Archive: Added Init/Shutdown methods to reset kernel archive state.Gravatar bunnei2014-07-043-0/+19
* FileSys: Added preliminary support for applications reading the RomFS archive.Gravatar bunnei2014-07-043-13/+135
* APT: Added stubbed ReceiveParameter and various cleanups.Gravatar bunnei2014-07-041-71/+93
* FS: Added stubbed code to intercept and decode file system service functions.Gravatar bunnei2014-06-273-0/+154
* Kernel: Added stubbed code to support creation of kernel Archive objects.Gravatar bunnei2014-06-273-0/+85
* Merge branch 'threading' of https://github.com/bunnei/citraGravatar bunnei2014-06-1424-1124/+1133
|\
| * Kernel: Removed unnecessary "#pragma once".Gravatar bunnei2014-06-131-2/+0
| * Kernel: Added freeing of kernel objects on emulator shutdown.Gravatar bunnei2014-06-132-0/+10
| * Event: Updated several log messages to be assertions.Gravatar bunnei2014-06-131-16/+8
| * HLE: Moved "PARAM" and "RETURN" macros to function_wrappers.h (this is only m...Gravatar bunnei2014-06-132-5/+6
| * SVC: Renamed all function wrapper templates to Wrap, moved to HLE namespace.Gravatar bunnei2014-06-132-157/+145
| * Thread: Renamed occurrences of "t" to "thread" to improve readability.Gravatar bunnei2014-06-131-48/+45
| * Thread: Cleaned up VerifyWait, fixed issue where nullptr msg could unnecessar...Gravatar bunnei2014-06-131-9/+7
| * HLE: Removed usnused EatCycles function.Gravatar bunnei2014-06-133-15/+0
| * SVC: Cleaned up function wrappers to pass in correct argument types.Gravatar bunnei2014-06-132-870/+201
| * Thread: Moved position of * in arguments.Gravatar bunnei2014-06-131-2/+2
| * Thread: Updated VerifyWait to be more readable (but functionally the same).Gravatar bunnei2014-06-131-4/+3
| * SVC: Moved declaration of "wait" variable in SendSyncRequest for improved rea...Gravatar bunnei2014-06-131-1/+1
| * HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)Gravatar bunnei2014-06-1312-235/+235
| * Kernel: Updated various kernel function "name" arguments to be const references.Gravatar bunnei2014-06-134-6/+6
| * HLE: Updated various handle debug assertions to be more clear.Gravatar bunnei2014-06-134-10/+10
| * Mutex: Moved ReleaseMutex iterator declaration to be inside while loop.Gravatar bunnei2014-06-131-2/+1
| * Kernel: Updated several member functions to be constGravatar bunnei2014-06-135-13/+13
| * Thread: Fixed bug with ResetThread where cpu_registers[15] was being incorrec...Gravatar bunnei2014-06-131-1/+1
| * Kernel: Made SyncRequest not pure virtual, with a default implementation of e...Gravatar bunnei2014-06-133-23/+4
| * Kernel: Added real support for thread and event blockingGravatar bunnei2014-06-136-76/+196
| * hle: added a hokey way to force a thread reschedule during CPU single step mo...Gravatar bunnei2014-06-052-0/+5
| * kernel: changed current default thread priority back to 0x30 - I think this i...Gravatar bunnei2014-06-051-1/+1
| * arm: fixed bug in how thread context switch occurs with SkyEyeGravatar bunnei2014-06-051-0/+4
| * service: added a error log messages for unimplemented WaitSynchronizationGravatar bunnei2014-06-041-0/+1
| * svc: added optional name field to Event and Mutex (used for debugging)Gravatar bunnei2014-06-026-12/+25
| * kernel: moved position of * for GetTypeName and GetNameGravatar bunnei2014-06-021-2/+2
| * coprocessor: reenabled debug logGravatar bunnei2014-06-021-1/+1
| * svc: updated WaitSynchronizationN to properly use first pointer argumentGravatar bunnei2014-06-022-4/+6
| * svc: changed DuplicateHandle log message from "error" to "debug"Gravatar bunnei2014-06-011-1/+1
| * svc: added GetThreadPriority and SetThreadPriority, added (incomplete) Duplic...Gravatar bunnei2014-06-013-3/+77
| * kernel: changed main thread priority to default, updated Kernel::Reschedule t...Gravatar bunnei2014-06-016-9/+17
| * svc: cleaned up function_wrappers, updated various SVCs to make use of pointe...Gravatar bunnei2014-06-012-31/+40
| * svc: added missing function wrapper for SleepThreadGravatar bunnei2014-06-011-0/+4