mirror of
https://github.com/zeldaret/oot.git
synced 2025-01-16 13:36:57 +00:00
11 lines
175 B
C
11 lines
175 B
C
|
#ifndef STACK_H
|
||
|
#define STACK_H
|
||
|
|
||
|
#define STACK(stack, size) \
|
||
|
u64 stack[ALIGN8(size) / sizeof(u64)]
|
||
|
|
||
|
#define STACK_TOP(stack) \
|
||
|
((u8*)(stack) + sizeof(stack))
|
||
|
|
||
|
#endif
|