summaryrefslogtreecommitdiff
path: root/include/global.h
diff options
context:
space:
mode:
authorDiegoisawesome <diego@domoreaweso.me>2016-10-31 03:14:22 -0500
committerDiegoisawesome <diego@domoreaweso.me>2016-10-31 09:43:17 -0500
commit4df1937738c4dc39d23f5c4e4b0d6a3774ff1b17 (patch)
tree4035a8314efc3149a5f818a2589c099643b08850 /include/global.h
parent6874afafe545365a52c2262da4e4a84ddf14afaf (diff)
Ported task.c and others from pokeruby
Diffstat (limited to 'include/global.h')
-rw-r--r--include/global.h30
1 files changed, 1 insertions, 29 deletions
diff --git a/include/global.h b/include/global.h
index 37473afc8..0047fcbdb 100644
--- a/include/global.h
+++ b/include/global.h
@@ -1,34 +1,6 @@
#ifndef GUARD_GLOBAL_H
#define GUARD_GLOBAL_H
-typedef unsigned char u8;
-typedef unsigned short u16;
-typedef unsigned int u32;
-typedef signed char s8;
-typedef signed short s16;
-typedef signed int s32;
-
-typedef volatile u8 vu8;
-typedef volatile u16 vu16;
-typedef volatile u32 vu32;
-typedef volatile s8 vs8;
-typedef volatile s16 vs16;
-typedef volatile s32 vs32;
-
-typedef float f32;
-typedef double f64;
-
-typedef u8 bool8;
-typedef u16 bool16;
-typedef u32 bool32;
-
-#define NULL (void *)0
-
-#define TRUE 1
-#define FALSE 0
-
-#include "gba/io_reg.h"
-#include "gba/syscall.h"
-#include "gba/macro.h"
+#include "gba/gba.h"
#endif // GUARD_GLOBAL_H