This commit is contained in:
farisawan-2000
2020-12-11 21:47:11 -05:00
commit 871eed30af
13 changed files with 2090 additions and 0 deletions

12
stack.h Normal file
View File

@@ -0,0 +1,12 @@
#include <ultra64.h>
#include <PR/gs2dex.h>
extern uObjMtx stack[0x80];
extern u32 stack_top;
extern u32 s_isfull(void);
extern u32 s_isempty(void);
extern void s_push(uObjMtx *f);
extern uObjMtx *s_pop(void);
extern void s_clear(void);