diff options
author | 2020-04-27 20:14:30 -0400 | |
---|---|---|
committer | 2020-04-27 20:14:30 -0400 | |
commit | 6e93c2ee1aab5bf0ee3ded7023dc59f8efb1eab6 (patch) | |
tree | 35eec8f0a7727be4ae7df81536a705c6c0544942 /src/devices/cpu/m6502/m6502.cpp | |
parent | b473b1cbf0d80d3310869b2027ae4ffe627d1b21 (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.cpp')
-rw-r--r-- | src/devices/cpu/m6502/m6502.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/devices/cpu/m6502/m6502.cpp b/src/devices/cpu/m6502/m6502.cpp index 18e8b57cd79..3d89735dda5 100644 --- a/src/devices/cpu/m6502/m6502.cpp +++ b/src/devices/cpu/m6502/m6502.cpp @@ -14,12 +14,18 @@ #include "m6502d.h" DEFINE_DEVICE_TYPE(M6502, m6502_device, "m6502", "MOS Technology M6502") +DEFINE_DEVICE_TYPE(M6512, m6512_device, "m6512", "MOS Technology M6512") m6502_device::m6502_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : m6502_device(mconfig, M6502, tag, owner, clock) { } +m6512_device::m6512_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : + m6502_device(mconfig, M6512, tag, owner, clock) +{ +} + m6502_device::m6502_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock) : cpu_device(mconfig, type, tag, owner, clock), sync_w(*this), |