diff options
Diffstat (limited to 'src/devices/bus/isa')
-rw-r--r-- | src/devices/bus/isa/isa_cards.cpp | 2 | ||||
-rw-r--r-- | src/devices/bus/isa/omti8621.cpp | 2 | ||||
-rw-r--r-- | src/devices/bus/isa/sc499.cpp | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/src/devices/bus/isa/isa_cards.cpp b/src/devices/bus/isa/isa_cards.cpp index a9ab1b9dc8f..e2702a5598f 100644 --- a/src/devices/bus/isa/isa_cards.cpp +++ b/src/devices/bus/isa/isa_cards.cpp @@ -19,6 +19,7 @@ SLOT_INTERFACE_START( pc_isa8_cards ) SLOT_INTERFACE("aga_pc200", ISA8_AGA_PC200) SLOT_INTERFACE("ega", ISA8_EGA) SLOT_INTERFACE("pgc", ISA8_PGC) + SLOT_INTERFACE("vga", ISA8_VGA) SLOT_INTERFACE("svga_et4k", ISA8_SVGA_ET4K) SLOT_INTERFACE("num9rev",ISA8_NUM_9_REV) SLOT_INTERFACE("com", ISA8_COM) @@ -40,6 +41,7 @@ SLOT_INTERFACE_START( pc_isa8_cards ) SLOT_INTERFACE("sblaster1_0", ISA8_SOUND_BLASTER_1_0) SLOT_INTERFACE("sblaster1_5", ISA8_SOUND_BLASTER_1_5) SLOT_INTERFACE("stereo_fx", ISA8_STEREO_FX) + SLOT_INTERFACE("ssi2001", ISA8_SSI2001) SLOT_INTERFACE("mpu401", ISA8_MPU401) SLOT_INTERFACE("ne1000", NE1000) SLOT_INTERFACE("3c503", EL2_3C503) diff --git a/src/devices/bus/isa/omti8621.cpp b/src/devices/bus/isa/omti8621.cpp index c3eb61bf0e8..15255f1f3e5 100644 --- a/src/devices/bus/isa/omti8621.cpp +++ b/src/devices/bus/isa/omti8621.cpp @@ -1370,7 +1370,7 @@ void omti_disk_image_device::device_start() { m_image = this; - if (m_image->image_core_file() == nullptr) + if (!m_image->is_open()) { LOG1(("device_start_omti_disk: no disk")); } diff --git a/src/devices/bus/isa/sc499.cpp b/src/devices/bus/isa/sc499.cpp index 88a0272a9c1..5e044759603 100644 --- a/src/devices/bus/isa/sc499.cpp +++ b/src/devices/bus/isa/sc499.cpp @@ -344,7 +344,7 @@ void sc499_device::device_start() m_installed = false; - if (m_image->image_core_file() == nullptr) + if (!m_image->is_open()) { LOG2(("start sc499: no cartridge tape")); } |