aboutsummaryrefslogtreecommitdiff
path: root/src/inc/def.h
diff options
context:
space:
mode:
authorMarvin Borner2021-04-19 22:38:59 +0200
committerMarvin Borner2021-04-19 22:38:59 +0200
commitdb55ea657e1edcb5d7da3dd90e4dc6b7643bbfe0 (patch)
tree3f9b26c54bf3bfafac2e30c82b67bba02883d5c1 /src/inc/def.h
8051 is awesome
Diffstat (limited to 'src/inc/def.h')
-rw-r--r--src/inc/def.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/inc/def.h b/src/inc/def.h
new file mode 100644
index 0000000..bd06eb9
--- /dev/null
+++ b/src/inc/def.h
@@ -0,0 +1,14 @@
+#ifndef DEF_H
+#define DEF_H
+
+typedef unsigned int u32;
+typedef unsigned short u16;
+typedef unsigned char u8;
+
+typedef signed int s32;
+typedef signed short s16;
+typedef signed char s8;
+
+#define UNUSED(bla) ((void)(bla))
+
+#endif