diff options
author | 2021-01-10 16:25:10 +0100 | |
---|---|---|
committer | 2021-01-10 16:25:10 +0100 | |
commit | 4d1d2e4f6875a5f2e5046457570b4e955fca058b (patch) | |
tree | 191512c63354ab7fe188ee05ef1f27ae9d82ce83 /src/devices/machine/m950x0.cpp | |
parent | 98141899ec34e3b4a5f8c3551b669c6037648787 (diff) |
-m950x0: Fixed validation. [Ryan Holtz]
Diffstat (limited to 'src/devices/machine/m950x0.cpp')
-rw-r--r-- | src/devices/machine/m950x0.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/m950x0.cpp b/src/devices/machine/m950x0.cpp index b04844aefac..ce85c48a9b6 100644 --- a/src/devices/machine/m950x0.cpp +++ b/src/devices/machine/m950x0.cpp @@ -49,12 +49,12 @@ m95010_device::m95010_device(const machine_config &mconfig, const char *tag, dev } m95020_device::m95020_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) - : m950x0_device(mconfig, M95010, tag, owner, 0x100) + : m950x0_device(mconfig, M95020, tag, owner, 0x100) { } m95040_device::m95040_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) - : m950x0_device(mconfig, M95010, tag, owner, 0x200) + : m950x0_device(mconfig, M95040, tag, owner, 0x200) { } |