added a memory mapped option for HLE

This commit is contained in:
bunnei 2014-04-12 01:33:13 -04:00
parent 02fbd42e7f
commit 9a9b7b289a

View file

@ -32,6 +32,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
};
////////////////////////////////////////////////////////////////////////////////////////////////////