summaryrefslogtreecommitdiffstatshomepage
path: root/trunk/src/emu/cpu/m6502/m4510.h
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/src/emu/cpu/m6502/m4510.h')
-rw-r--r--trunk/src/emu/cpu/m6502/m4510.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/trunk/src/emu/cpu/m6502/m4510.h b/trunk/src/emu/cpu/m6502/m4510.h
new file mode 100644
index 00000000000..e896a9bf5b3
--- /dev/null
+++ b/trunk/src/emu/cpu/m6502/m4510.h
@@ -0,0 +1,49 @@
+/*****************************************************************************
+ *
+ * m4510.c
+ * Portable 4510 emulator V1.0beta
+ *
+ * Copyright Peter Trauner, all rights reserved.
+ *
+ * - This source code is released as freeware for non-commercial purposes.
+ * - You are free to use and redistribute this code in modified or
+ * unmodified form, provided you list me in the credits.
+ * - If you modify this source code, you must add a notice to each modified
+ * source file that it has been changed. If you're a nice person, you
+ * will clearly mark each change too. :)
+ * - If you wish to use this for commercial purposes, please contact me at
+ * pullmoll@t-online.de
+ * - The author of this copywritten work reserves the right to change the
+ * terms of its usage and license at any time, including retroactively
+ * - This entire notice must remain in the source code.
+ *
+ *****************************************************************************/
+
+#pragma once
+
+#ifndef __M4510_H__
+#define __M4510_H__
+
+#include "m6502.h"
+
+
+enum
+{
+ M4510_PC=1, M4510_S, M4510_P, M4510_A, M4510_X, M4510_Y,
+ M4510_Z, M4510_B, M4510_EA, M4510_ZP,
+ M4510_NMI_STATE, M4510_IRQ_STATE,
+ M4510_MEM_LOW,M4510_MEM_HIGH,
+ M4510_MEM0, M4510_MEM1, M4510_MEM2, M4510_MEM3,
+ M4510_MEM4, M4510_MEM5, M4510_MEM6, M4510_MEM7
+};
+
+#define M4510_IRQ_LINE M6502_IRQ_LINE
+
+DECLARE_LEGACY_CPU_DEVICE(M4510, m4510);
+
+
+extern CPU_DISASSEMBLE( m4510 );
+
+UINT8 m4510_get_port(legacy_cpu_device *device);
+
+#endif /* __M4510_H__ */