summaryrefslogtreecommitdiff
path: root/global.h
diff options
context:
space:
mode:
Diffstat (limited to 'global.h')
-rw-r--r--global.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/global.h b/global.h
new file mode 100644
index 0000000..9b322a9
--- /dev/null
+++ b/global.h
@@ -0,0 +1,14 @@
+#ifndef _GLOBAL
+#define _GLOBAL
+
+#include <stdint.h>
+
+typedef uint8_t bool;
+#define false 0
+#define true 1
+
+typedef int32_t i32;
+typedef uint32_t u32;
+
+
+#endif /* _GLOBAL */