create seperate core2/file.h header

This commit is contained in:
Banjo Kazooie
2024-09-13 19:34:27 -05:00
parent c566cadd6f
commit d55a8d829d
15 changed files with 86 additions and 53 deletions

10
include/bool.h Normal file
View File

@@ -0,0 +1,10 @@
#include <ultra64.h>
#ifndef BANJO_KAZOOIE_BOOL_H
#define BANJO_KAZOOIE_BOOL_H
typedef int bool;
#define NOT(boolean) ((boolean) ^ 1)
#define BOOL(boolean) ((boolean) ? TRUE : FALSE)
#endif