aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
Commit message (Collapse)AuthorAge
* log: fixed to not print twice, enabled coloring, added OS print logging as ↵Gravatar bunnei2014-05-29
| | | | its own type
* core: changed time delay before kernel reschedule to "approximate" a screen ↵Gravatar bunnei2014-05-29
| | | | refresh
* svc: changed unimplemented SVC log messages from "debug" messages to "error" ↵Gravatar bunnei2014-05-29
| | | | messages
* svc: added svcClearEvent, stubbed function for svcArbitrateAddress, and ↵Gravatar bunnei2014-05-29
| | | | | | | | various fixes - force kernel reschedule after svcWaitSynchronization - fixed some bugs with passing in pointer arguments - cleaned up some comments and log messages
* event: added support for ClearEvent, fixed a bug with CreateEvent, fixed ↵Gravatar bunnei2014-05-29
| | | | some comments
* service: added additional hack to return success on unimplemented service callsGravatar bunnei2014-05-29
|
* srv: changed a NOTICE_LOG to DEBUG_LOGGravatar bunnei2014-05-29
|
* svc: added ArbitrationType enumerationGravatar bunnei2014-05-29
|
* apt: added stubbed function for InquireNotificationGravatar bunnei2014-05-28
|
* hle: properly cast 64-bit function wrapper parameters to (u64)Gravatar bunnei2014-05-28
|
* hle: removed PARAM64 macro (this was incorrect), made several bug fixes ↵Gravatar bunnei2014-05-28
| | | | accordingly for decoding U64 function parameters
* lcd: moved kFrameTicks to lcd.h for use in other modulesGravatar bunnei2014-05-28
|
* service: changed interface to return 0 (no error) when a service method is ↵Gravatar bunnei2014-05-28
| | | | unimplemented - hack to make apps boot further
* APT_U: added stubbed function for APT_U::Enable, fixed some log messages to ↵Gravatar bunnei2014-05-27
| | | | be more consistent
* mutex: added preliminary SyncRequest/WaitSynchronization, added some ↵Gravatar bunnei2014-05-27
| | | | comments/assertions
* svc: implemented WaitSynchronization1, WaitSynchronizationN, and CreateEventGravatar bunnei2014-05-27
|
* APT_U: added event creation to Initialize methodGravatar bunnei2014-05-27
|
* event: fixed typos and updated CMakeListsGravatar bunnei2014-05-27
|
* event: added SetEventLocked method to change status an events lockGravatar bunnei2014-05-27
|
* kernel: added event module to support creation of CTR "Event" objectsGravatar bunnei2014-05-27
|
* mutex: removed docstring comment that is no longer relevantGravatar bunnei2014-05-26
|
* mutex: added additional docstringsGravatar bunnei2014-05-26
|
* kernel: added WaitSynchronization method to Kernel::ObjectGravatar bunnei2014-05-26
|
* kernel: updated SyncRequest to take boolean thread wait result as a parameterGravatar bunnei2014-05-26
|
* svc: added some assertionsGravatar bunnei2014-05-26
|
* service: Renamed Sync to SyncRequestGravatar bunnei2014-05-26
|
* kernel: added enum for known CurrentThread and CurrentProcess handlesGravatar bunnei2014-05-26
|
* srv: added a real mutex for GetProcSemaphore (instead of stubbed)Gravatar bunnei2014-05-26
|
* svc: changed SendSyncRequest to use Kernel::Object SyncRequest (instead of ↵Gravatar bunnei2014-05-26
| | | | just service Interface class)
* kernel: add a SyncRequest method to KernelObject for use with svcSendSyncRequestGravatar bunnei2014-05-26
|
* svc: added stub for DuplicateHandle SVC callGravatar bunnei2014-05-26
|
* core: added Kernel::Reschedule() call to check for thread changes, shortened ↵Gravatar bunnei2014-05-22
| | | | delay time to 100 instructions
* svc: added a check to ensure that a service was implemented before ↵Gravatar bunnei2014-05-22
| | | | attempting to connect to its port
* lcd: added thread wait after (faked) vblank interrupt (would have) occurredGravatar bunnei2014-05-22
|
* thread: renamed "WaitCurThread" to "WaitCurrentThread", removed unused ↵Gravatar bunnei2014-05-22
| | | | "reason" argument
* thread: removed unused SwitchContext/Reschedule reason field, added missing ↵Gravatar bunnei2014-05-22
| | | | arg parameter to SVC CreateThread
* kernel: refactored function naming to remove "__" prefixGravatar bunnei2014-05-22
|
* core: moved armcopro.cpp to correct filter folder (arm/interpreter)Gravatar bunnei2014-05-22
|
* thread: moved ThreadStatus/WaitType to header, added support for arg on ↵Gravatar bunnei2014-05-22
| | | | CreateThread, added correct CPSR reset
* APT_U: added a debug log on calling GetLockHandleGravatar bunnei2014-05-22
|
* arm_interpreter: fixed load context to currently resume a threadGravatar bunnei2014-05-22
|
* thread: fixed bug where result of __NextThread was not being properly ↵Gravatar bunnei2014-05-21
| | | | checked when NULL
* svc: added Kernel::Reschedule to svc WaitSynchronization1, updated log ↵Gravatar bunnei2014-05-21
| | | | messages to include newly created handles
* svc: enabled use of newly created kernel thread handleGravatar bunnei2014-05-20
|
* mutex: refactored the interface to code to return a Mutex* handleGravatar bunnei2014-05-20
|
* mutex: initial commit of HLE moduleGravatar bunnei2014-05-20
|
* svc: added some commentsGravatar bunnei2014-05-20
|
* kernel: fixed include, in general include "common.h" not "common_types.h"Gravatar bunnei2014-05-20
|
* service: removed redundant include of common_types.hGravatar bunnei2014-05-20
|
* arm: removed include of windows.h from armdefs.h to arminit.c (only module ↵Gravatar bunnei2014-05-20
| | | | that uses it)