summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/rw5000/a5500.cpp
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2022-04-10 14:34:59 +0200
committer hap <happppp@users.noreply.github.com>2022-04-10 14:35:09 +0200
commit32c48d2e16d801e99652e85c0f462e5ac1ee8f81 (patch)
tree58213365396666a0a158826282c35b3e660ba93e /src/devices/cpu/rw5000/a5500.cpp
parent0112f18775d512562d030a999f1c7b309d9b70af (diff)
b5500: subclass of a5500 instead of b5000
Diffstat (limited to 'src/devices/cpu/rw5000/a5500.cpp')
-rw-r--r--src/devices/cpu/rw5000/a5500.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/devices/cpu/rw5000/a5500.cpp b/src/devices/cpu/rw5000/a5500.cpp
index cbd3897fb3e..2d8cee136f1 100644
--- a/src/devices/cpu/rw5000/a5500.cpp
+++ b/src/devices/cpu/rw5000/a5500.cpp
@@ -16,8 +16,12 @@ DEFINE_DEVICE_TYPE(A5500, a5500_cpu_device, "a5500", "Rockwell A5500")
// constructor
+a5500_cpu_device::a5500_cpu_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock, int prgwidth, address_map_constructor program, int datawidth, address_map_constructor data) :
+ a5000_cpu_device(mconfig, type, tag, owner, clock, prgwidth, program, datawidth, data)
+{ }
+
a5500_cpu_device::a5500_cpu_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock) :
- a5000_cpu_device(mconfig, A5500, tag, owner, clock, 10, address_map_constructor(FUNC(a5500_cpu_device::program_768x8), this), 6, address_map_constructor(FUNC(a5500_cpu_device::data_48x4), this))
+ a5500_cpu_device(mconfig, A5500, tag, owner, clock, 10, address_map_constructor(FUNC(a5500_cpu_device::program_768x8), this), 6, address_map_constructor(FUNC(a5500_cpu_device::data_48x4), this))
{ }