summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service (follow)
Commit message (Expand)AuthorAgeFilesLines
* Core: Alter the kernel string functions to use std::string instead of const char*.Lioncash2014-08-187-11/+11
* Merge pull request #39 from bunnei/hid-minor-improvementsbunnei2014-08-131-5/+44
|\
| * HID: Added new function entries from 3dbrew to FunctionTable.bunnei2014-08-131-0/+5
| * HID: Implemented HID_User::GetIPCHandles service function.bunnei2014-08-081-5/+39
* | Pica/GPU: Change hardware registers to use physical addresses rather than virtual ones.Tony Wasserka2014-08-121-9/+9
* | GSP: Fix a major regression introduced in ffda035c, due to which no display transfers were triggered at all anymore.Tony Wasserka2014-08-121-4/+13
* | Remove the fancy RegisterSet class introduced in 4c2bff61e.Tony Wasserka2014-08-121-18/+18
|/
* GSP: Cleaned up command buffer decoding.bunnei2014-08-072-61/+69
* GSP: Added reinitialization of other state objects.bunnei2014-08-061-0/+3
* GSP: Removed dumb GX prefixes to functions/structs in GSP namespace.bunnei2014-08-062-77/+78
* GSP: Removed unnecessary GX_FinishCommand function.bunnei2014-08-061-13/+5
* GSP: Implements preliminary command synchronization via GPU interrupts.bunnei2014-08-062-18/+109
* SRV: Updated GetProcSemaphore to create an event instead of a mutex.bunnei2014-08-061-8/+10
* FS: Fix port name (old port name was based on an unaligned memory read).bunnei2014-08-061-1/+1
* GSP: Add a few comments.Tony Wasserka2014-07-232-1/+15
* GSP: Clean up GX command processing a lot and treat command id as a u8 rather than a u32.Tony Wasserka2014-07-232-37/+79
* GPU: Make use of RegisterSet.Tony Wasserka2014-07-231-21/+28
* GPU: Emulate memory fills.Tony Wasserka2014-07-232-1/+9
* GSP: HLE GXCommandId::SET_DISPLAY_TRANSFER and GXCommandId::SET_TEXTURE_COPY.Tony Wasserka2014-07-231-2/+9
* GSP: Implement ReadHWRegs and WriteHWRegs properly.Tony Wasserka2014-07-231-27/+46
* GSP: Fixed to use real shared memory object, various cleanups.bunnei2014-07-051-25/+34
* FileSys: Added preliminary support for applications reading the RomFS archive.bunnei2014-07-051-3/+30
* APT: Added stubbed ReceiveParameter and various cleanups.bunnei2014-07-041-71/+93
* FS: Added stubbed code to intercept and decode file system service functions.bunnei2014-06-273-0/+154
* Merge branch 'threading' of https://github.com/bunnei/citrabunnei2014-06-149-148/+271
|\
| * HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)bunnei2014-06-137-118/+118
| * HLE: Updated various handle debug assertions to be more clear.bunnei2014-06-131-1/+1
| * Kernel: Updated several member functions to be constbunnei2014-06-131-2/+2
| * service: added a error log messages for unimplemented WaitSynchronizationbunnei2014-06-051-0/+1
| * svc: added optional name field to Event and Mutex (used for debugging)bunnei2014-06-032-4/+4
| * gsp: always pass through synchronization barrier for commandsbunnei2014-06-011-1/+16
| * hle: added stubbed service for ndm_ubunnei2014-05-302-0/+65
| * service: cleaned up log messagesbunnei2014-05-301-2/+2
| * service: removed PT_A from, as this was just an alias for APT_Ubunnei2014-05-301-2/+0
| * srv: fix to log unimplemented service (instead of crash)bunnei2014-05-301-6/+2
| * hle: cleaned up log messagesbunnei2014-05-304-11/+15
| * service: added additional hack to return success on unimplemented service callsbunnei2014-05-301-2/+10
| * srv: changed a NOTICE_LOG to DEBUG_LOGbunnei2014-05-301-1/+1
| * apt: added stubbed function for InquireNotificationbunnei2014-05-291-78/+86
| * service: changed interface to return 0 (no error) when a service method is unimplemented - hack to make apps boot furtherbunnei2014-05-291-2/+2
| * APT_U: added stubbed function for APT_U::Enable, fixed some log messages to be more consistentbunnei2014-05-281-3/+10
| * APT_U: added event creation to Initialize methodbunnei2014-05-281-1/+11
| * kernel: added WaitSynchronization method to Kernel::Objectbunnei2014-05-271-0/+10
| * kernel: updated SyncRequest to take boolean thread wait result as a parameterbunnei2014-05-271-3/+4
| * service: Renamed Sync to SyncRequestbunnei2014-05-271-1/+1
| * srv: added a real mutex for GetProcSemaphore (instead of stubbed)bunnei2014-05-271-3/+10
| * kernel: add a SyncRequest method to KernelObject for use with svcSendSyncRequestbunnei2014-05-271-6/+0
* | GPU debugger: Add functionality to inspect command lists.Tony Wasserka2014-06-121-0/+4
* | GPU: Cleanup register definitions.Tony Wasserka2014-06-121-3/+3
* | Rename LCD to GPU.Tony Wasserka2014-06-121-8/+8
* | Add initial graphics debugger interface.Tony Wasserka2014-06-121-0/+6
* | GSP: Define more GX commands.Tony Wasserka2014-06-122-14/+54
* | service: fixed typo that MSVC did not catch as an errorbunnei2014-05-231-1/+1
|/
* APT_U: added a debug log on calling GetLockHandlebunnei2014-05-231-0/+1
* mutex: refactored the interface to code to return a Mutex* handlebunnei2014-05-211-1/+2
* mutex: initial commit of HLE modulebunnei2014-05-211-6/+4
* service: removed redundant include of common_types.hbunnei2014-05-211-1/+0
* renamed "syscall" module to "svc" (more accurate naming)bunnei2014-05-211-1/+1
* - created a Kernel namespacebunnei2014-05-212-8/+8
* apt: changed stubbed handle to be something other than 0xDEADBEEF (used as a magic value in other places) so that I can track how it propagates through the app codebunnei2014-05-201-1/+1
* - renamed NewHandle to CreateHandlebunnei2014-05-192-8/+8
* - updated service(s) to be KernelObject'sbunnei2014-05-196-55/+26
* renamed "UID" to "Handle" where appropriatebunnei2014-05-193-22/+20
* - moved Handle/Result definitions to kernel.hbunnei2014-05-193-7/+9
* added stubbed GetProcSemaphore - does nothing but avoids an exceptionbunnei2014-05-171-1/+7
* updated APT_U::GetLockHandle to return a valid handlebunnei2014-05-171-1/+5
* removed unknown fields from GX_CmdBufferHeaderbunnei2014-05-081-5/+0
* - removed HLE mem "hack" and replaced with kernel mem regionbunnei2014-05-084-8/+84
* removed DISALLOW_COPY_AND_ASSIGN in favor of NonCopyable classbunnei2014-04-283-9/+0
* fixed weird spacingbunnei2014-04-281-1/+1
* hackish but working way to set the framebuffer location to VRAM (used in ARM11 demos tested thus far, e.g. yeti3DS)bunnei2014-04-271-3/+9
* added simple GSP GPU ReadHWRegs function to support returning the framebuffer addressbunnei2014-04-261-1/+37
* added GSP::RegisterInterruptRelayQueue functionbunnei2014-04-251-31/+40
* - refactored how service functions are calledbunnei2014-04-255-19/+39
* fixed bug with printing std::string in log messagesbunnei2014-04-171-2/+2
* added class stub for HID:User servicebunnei2014-04-173-0/+72
* updated service commentsbunnei2014-04-176-5/+17
* - added stubbed out GSP::Gpu service interfacebunnei2014-04-167-7/+103
* removed no longer used function headerbunnei2014-04-161-2/+0
* restructured hle:services completely to use function lookup tablesbunnei2014-04-165-137/+215
* fixed naming for APT_Ubunnei2014-04-163-9/+9
* - extracted srv: calls from service.cpp and put in its own modulebunnei2014-04-164-106/+105
* added a stub for GetLockHandlebunnei2014-04-143-9/+44
* added framework for APT service (application and title launching service)bunnei2014-04-134-5/+117
* renamed class Interface_SRV to SRVbunnei2014-04-131-6/+6
* added some very initial command parsing for SRV Syncbunnei2014-04-131-5/+31
* cleanups to service HLEbunnei2014-04-132-8/+8
* - added HLE to connect to "srv:" servicebunnei2014-04-132-2/+170
* - renamed hle_syscall to just syscallbunnei2014-04-121-0/+60