mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-24 11:46:58 -04:00
kern: increase stack parameter size by 0x10
This commit is contained in:
parent
3a5f406c5f
commit
fd7a93a15f
3 changed files with 9 additions and 4 deletions
|
@ -96,8 +96,8 @@ namespace ams::kern::arch::arm64 {
|
|||
/* SP */
|
||||
/* | */
|
||||
/* v */
|
||||
/* | u64 argument | u64 entrypoint | KThread::StackParameters (size 0x130) | */
|
||||
static_assert(sizeof(KThread::StackParameters) == 0x130);
|
||||
/* | u64 argument | u64 entrypoint | KThread::StackParameters (size 0x140) | */
|
||||
static_assert(sizeof(KThread::StackParameters) == 0x140);
|
||||
|
||||
u64 *stack = GetPointer<u64>(sp);
|
||||
*(--stack) = GetInteger(pc);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue