summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/minx/minx.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu/minx/minx.h')
-rw-r--r--src/emu/cpu/minx/minx.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/emu/cpu/minx/minx.h b/src/emu/cpu/minx/minx.h
new file mode 100644
index 00000000000..e0a661293fb
--- /dev/null
+++ b/src/emu/cpu/minx/minx.h
@@ -0,0 +1,18 @@
+#ifndef minx_H
+#define minx_H
+#include "cpuintrf.h"
+#include "osd_cpu.h"
+#include "driver.h"
+
+enum {
+ MINX_PC=1, MINX_SP, MINX_BA, MINX_HL, MINX_X, MINX_Y,
+ MINX_U, MINX_V, MINX_F, MINX_E, MINX_N, MINX_I,
+ MINX_XI, MINX_YI,
+};
+
+#ifdef MAME_DEBUG
+extern unsigned minx_dasm( char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram );
+#endif
+
+#endif
+