summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/m6502/m6502.h
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2020-04-27 20:14:30 -0400
committer AJR <ajrhacker@users.noreply.github.com>2020-04-27 20:14:30 -0400
commit6e93c2ee1aab5bf0ee3ded7023dc59f8efb1eab6 (patch)
tree35eec8f0a7727be4ae7df81536a705c6c0544942 /src/devices/cpu/m6502/m6502.h
parentb473b1cbf0d80d3310869b2027ae4ffe627d1b21 (diff)
New machines marked as NOT_WORKING
---------------------------------- MDT 60 Video Display Terminal [Bitsavers] Z-22 Terminal [Bitsavers]
Diffstat (limited to 'src/devices/cpu/m6502/m6502.h')
-rw-r--r--src/devices/cpu/m6502/m6502.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/devices/cpu/m6502/m6502.h b/src/devices/cpu/m6502/m6502.h
index 4e9e71b2eed..3637b088eea 100644
--- a/src/devices/cpu/m6502/m6502.h
+++ b/src/devices/cpu/m6502/m6502.h
@@ -269,6 +269,11 @@ protected:
virtual void execute_run() override;
};
+class m6512_device : public m6502_device {
+public:
+ m6512_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+};
+
enum {
M6502_PC = 1,
M6502_A,
@@ -286,5 +291,6 @@ enum {
};
DECLARE_DEVICE_TYPE(M6502, m6502_device)
+DECLARE_DEVICE_TYPE(M6512, m6512_device)
#endif // MAME_CPU_M6502_M6502_H