Implement main thread stack

This commit is contained in:
wheremyfoodat 2022-09-15 17:50:14 +03:00
parent 275c6dfd0c
commit c33d7e5dfb
3 changed files with 20 additions and 2 deletions

View file

@ -11,8 +11,10 @@ namespace VirtualAddrs {
ExecutableEnd = 0x00100000 + 0x03F00000,
// Stack for main ARM11 thread.
// Typically 0x4000 bytes
StackTop = 0x10000000
// Typically 0x4000 bytes, determined by exheader
StackTop = 0x10000000,
StackBottom = 0x0FFFC000,
StackSize = 0x4000
};
}