summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/m68000/m68000.h
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-03-22 13:39:36 -0400
committer AJR <ajrhacker@users.noreply.github.com>2019-03-22 13:39:36 -0400
commit63677b3f047211a0534f13b96e548861613b7413 (patch)
treea4daa8c06c679eb72c6910ded2fb611266f33a53 /src/devices/cpu/m68000/m68000.h
parentff8c8701de2da95381b13ecfaf5513749c9d2ee1 (diff)
m68301: Remove device type (nw)
Diffstat (limited to 'src/devices/cpu/m68000/m68000.h')
-rw-r--r--src/devices/cpu/m68000/m68000.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/devices/cpu/m68000/m68000.h b/src/devices/cpu/m68000/m68000.h
index d6afd83d534..5fa4a469122 100644
--- a/src/devices/cpu/m68000/m68000.h
+++ b/src/devices/cpu/m68000/m68000.h
@@ -377,21 +377,6 @@ protected:
const device_type type, uint32_t prg_data_width, uint32_t prg_address_bits, address_map_constructor internal_map);
};
-class m68301_device : public m68000_base_device
-{
-public:
- // construction/destruction
- m68301_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
-
- virtual std::unique_ptr<util::disasm_interface> create_disassembler() override;
-
- virtual uint32_t execute_min_cycles() const override { return 4; };
- virtual uint32_t execute_max_cycles() const override { return 158; };
-
- // device-level overrides
- virtual void device_start() override;
-};
-
@@ -649,7 +634,6 @@ public:
DECLARE_DEVICE_TYPE(M68000, m68000_device)
-DECLARE_DEVICE_TYPE(M68301, m68301_device)
DECLARE_DEVICE_TYPE(M68008, m68008_device)
DECLARE_DEVICE_TYPE(M68008PLCC, m68008plcc_device)
DECLARE_DEVICE_TYPE(M68010, m68010_device)