diff options
author | 2017-03-03 14:03:45 +0100 | |
---|---|---|
committer | 2017-03-03 14:03:45 +0100 | |
commit | 446108bfe9fd10abe5484b77d70229a4c89cb670 (patch) | |
tree | 080e1e67e89b2979b4cf0d5f30efe0a149be98b3 /src/devices/cpu/m68000 | |
parent | 47e19d6eff8cc1c1301e16687a15d3ee90c4b074 (diff) |
fd1089, fd1094: Device cleanup [O. Galibert]
Diffstat (limited to 'src/devices/cpu/m68000')
-rw-r--r-- | src/devices/cpu/m68000/m68000.h | 1 | ||||
-rw-r--r-- | src/devices/cpu/m68000/m68kcpu.cpp | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/devices/cpu/m68000/m68000.h b/src/devices/cpu/m68000/m68000.h index c7b803fefdf..93b39448f6c 100644 --- a/src/devices/cpu/m68000/m68000.h +++ b/src/devices/cpu/m68000/m68000.h @@ -404,6 +404,7 @@ public: // construction/destruction m68000_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); m68000_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock, const char *shortname, const char *source); + m68000_device(const machine_config &mconfig, const device_type type, const char *name, const char *tag, device_t *owner, uint32_t clock, const char *shortname, const char *source); m68000_device(const machine_config &mconfig, const char *name, const char *tag, device_t *owner, uint32_t clock, const device_type type, uint32_t prg_data_width, uint32_t prg_address_bits, address_map_constructor internal_map, const char *shortname, const char *source); diff --git a/src/devices/cpu/m68000/m68kcpu.cpp b/src/devices/cpu/m68000/m68kcpu.cpp index 44c21eb8818..df2de9e6870 100644 --- a/src/devices/cpu/m68000/m68kcpu.cpp +++ b/src/devices/cpu/m68000/m68kcpu.cpp @@ -2524,6 +2524,11 @@ m68000_device::m68000_device(const machine_config &mconfig, const char *tag, dev { } +m68000_device::m68000_device(const machine_config &mconfig, const device_type type, const char *name, const char *tag, device_t *owner, uint32_t clock, const char *shortname, const char *source) + : m68000_base_device(mconfig, name, tag, owner, clock, type, 16,24, shortname, source) +{ +} + void m68000_device::device_start() { init_cpu_m68000(); |