aboutsummaryrefslogtreecommitdiff
path: root/SrcShared/UAE/UAE.h
diff options
context:
space:
mode:
Diffstat (limited to 'SrcShared/UAE/UAE.h')
-rw-r--r--SrcShared/UAE/UAE.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/SrcShared/UAE/UAE.h b/SrcShared/UAE/UAE.h
new file mode 100644
index 0000000..83307a7
--- /dev/null
+++ b/SrcShared/UAE/UAE.h
@@ -0,0 +1,21 @@
+#ifndef UAE_h
+#define UAE_h
+
+#include "sysconfig.h" // (should really be included by sysdeps.h ...)
+#include "sysdeps.h" // uae_u8, uae_u16, uae_u32, etc.
+#include "config.h"
+#include "options.h"
+#include "machdep_m68k.h"
+#include "memory_cpu.h"
+#include "custom.h"
+#include "readcpu.h"
+#include "newcpu.h"
+#include "compiler.h"
+#include "cputbl.h"
+
+// sysdeps.h brings in assert.h. However,
+// we don't want to use assert in our application
+// so undef it. Use EmAssert instead.
+#undef assert
+
+#endif /* UAE_h */