summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/v30mz/necintrf.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu/v30mz/necintrf.h')
-rw-r--r--src/emu/cpu/v30mz/necintrf.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/emu/cpu/v30mz/necintrf.h b/src/emu/cpu/v30mz/necintrf.h
new file mode 100644
index 00000000000..33650b9f716
--- /dev/null
+++ b/src/emu/cpu/v30mz/necintrf.h
@@ -0,0 +1,16 @@
+/* ASG 971222 -- rewrote this interface */
+#ifndef __NEC_H_
+#define __NEC_H_
+
+#include "cpuintrf.h"
+
+enum {
+ NEC_PC=0,
+ NEC_IP, NEC_AW, NEC_CW, NEC_DW, NEC_BW, NEC_SP, NEC_BP, NEC_IX, NEC_IY,
+ NEC_FLAGS, NEC_ES, NEC_CS, NEC_SS, NEC_DS,
+ NEC_VECTOR, NEC_PENDING };
+
+/* Public functions */
+extern void v30mz_get_info(UINT32 state, cpuinfo *info);
+
+#endif