mirror of
https://github.com/HarbourMasters/2ship2harkinian.git
synced 2024-11-27 00:00:32 +00:00
13 lines
199 B
C
13 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
|