diff options
author | 2017-03-03 21:25:16 +1100 | |
---|---|---|
committer | 2017-03-03 21:25:16 +1100 | |
commit | 3ecdaafea65c7cedb2dffc4bd865611f069ec289 (patch) | |
tree | 661b58c4793d02d0365dc54ea585c42309a937cc /src/devices/cpu/mcs96 | |
parent | 8459d2b2aeeca78fbdf70d440484f29bb8006d38 (diff) |
clean up a few more device issues, add basic device validation
Diffstat (limited to 'src/devices/cpu/mcs96')
-rw-r--r-- | src/devices/cpu/mcs96/i8x9x.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/mcs96/i8x9x.cpp b/src/devices/cpu/mcs96/i8x9x.cpp index 6f78e7d00a9..151a4809cb8 100644 --- a/src/devices/cpu/mcs96/i8x9x.cpp +++ b/src/devices/cpu/mcs96/i8x9x.cpp @@ -369,6 +369,6 @@ p8098_device::p8098_device(const machine_config &mconfig, const char *tag, devic } const device_type C8095 = device_creator<c8095_device>; -const device_type P8098 = device_creator<p8098_device>; +const device_type P8098 = C8095; #include "cpu/mcs96/i8x9x.hxx" |