mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-04-24 23:11:00 -05:00
use absolute address for ipc buffers
This commit is contained in:
parent
259d12e7d5
commit
81c816584a
|
|
@ -358,9 +358,10 @@ __intrstack_addr = (__stack_addr + 0x4000);
|
|||
__intrstack_end = (__stack_addr);
|
||||
__ArenaLo = (__intrstack_addr + 31) & (-32);
|
||||
__ArenaHi = (0x81700000);
|
||||
__ipcbufferLo = (__ArenaHi + 31) & (-32);
|
||||
__ipcbufferHi = (__ipcbufferLo + 0x20000 + 31) & (-32);
|
||||
__gxregs = (__ipcbufferHi + 31) & (-32);
|
||||
|
||||
__gxregs = (__ArenaHi + 31) & (-32);
|
||||
__ipcbufferLo = (0x933e0000);
|
||||
__ipcbufferHi = (0x93400000);
|
||||
|
||||
/* for backward compatibility with old crt0 */
|
||||
PROVIDE (__stack = (0x81700000));
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user