mirror of
https://github.com/zeldaret/oot.git
synced 2025-02-05 11:44:31 +00:00
12 lines
199 B
C
12 lines
199 B
C
#ifndef STACK_H
|
|
#define STACK_H
|
|
|
|
#include "alignment.h"
|
|
|
|
#define STACK(stack, size) \
|
|
u64 stack[ALIGN8(size) / sizeof(u64)]
|
|
|
|
#define STACK_TOP(stack) \
|
|
((u8*)(stack) + sizeof(stack))
|
|
|
|
#endif
|