diff options
Diffstat (limited to 'src/devices/bus/odyssey2/4in1.cpp')
-rw-r--r-- | src/devices/bus/odyssey2/4in1.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/devices/bus/odyssey2/4in1.cpp b/src/devices/bus/odyssey2/4in1.cpp index d458347c076..17259589979 100644 --- a/src/devices/bus/odyssey2/4in1.cpp +++ b/src/devices/bus/odyssey2/4in1.cpp @@ -23,7 +23,8 @@ DEFINE_DEVICE_TYPE(O2_ROM_4IN1, o2_4in1_device, "o2_4in1", "Odyssey 2 Videopac 4 //------------------------------------------------- o2_4in1_device::o2_4in1_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : - o2_rom_device(mconfig, O2_ROM_4IN1, tag, owner, clock) + device_t(mconfig, O2_ROM_4IN1, tag, owner, clock), + device_o2_cart_interface(mconfig, *this) { } void o2_4in1_device::device_start() @@ -35,7 +36,7 @@ void o2_4in1_device::device_start() void o2_4in1_device::cart_init() { if (m_rom_size != 0x1000) - fatalerror("o2_4in1_device: ROM size must be 4096\n"); + fatalerror("o2_4in1_device: ROM size must be 4KB\n"); } |