- added HLE to connect to "srv:" service

- added a manager for keeping track of services/ports
- added a memory mapped region for memory accessed by HLE
- added HLE for GetThreadCommandBuffer function
This commit is contained in:
bunnei 2014-04-12 21:55:36 -04:00
parent 4d88318903
commit 68e198476f
11 changed files with 384 additions and 166 deletions

View file

@ -33,8 +33,9 @@ enum {
MEM_VRAM_VADDR = 0x1F000000,
MEM_SCRATCHPAD_VADDR = (0x10000000 - MEM_SCRATCHPAD_SIZE), ///< Scratchpad virtual address
MEM_OSHLE_VADDR = 0xC0000000, ///< Memory for use by OSHLE accessible by appcore CPU
MEM_OSHLE_SIZE = 0x08000000, ///< ...Same size as FCRAM for now
MEM_OSHLE_VADDR = 0xA0000000, ///< Memory for use by OSHLE accessible by appcore CPU
MEM_OSHLE_VADDR_END = (MEM_OSHLE_VADDR + MEM_OSHLE_SIZE),
};
////////////////////////////////////////////////////////////////////////////////////////////////////