Move source into subdirectory

This commit is contained in:
Garrett Cox
2024-01-05 18:00:59 -05:00
committed by louist103
parent 7c7021f3a2
commit 9be74e0026
3049 changed files with 0 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#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