From 6e93c2ee1aab5bf0ee3ded7023dc59f8efb1eab6 Mon Sep 17 00:00:00 2001 From: AJR Date: Mon, 27 Apr 2020 20:14:30 -0400 Subject: New machines marked as NOT_WORKING ---------------------------------- MDT 60 Video Display Terminal [Bitsavers] Z-22 Terminal [Bitsavers] --- src/devices/cpu/m6502/m6502.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/devices/cpu/m6502/m6502.cpp') 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), -- cgit v1.2.3-70-g09d2