summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/isa/lbaenhancer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/isa/lbaenhancer.cpp')
-rw-r--r--src/devices/bus/isa/lbaenhancer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/isa/lbaenhancer.cpp b/src/devices/bus/isa/lbaenhancer.cpp
index f8ebedb130c..df5d7cdb4a1 100644
--- a/src/devices/bus/isa/lbaenhancer.cpp
+++ b/src/devices/bus/isa/lbaenhancer.cpp
@@ -9,7 +9,7 @@
Generic BIOS extension card. Adds 28 bit LBA mode to any pre-1994
board with an empty ISA slot.
- Supports 1 to 4 large hard disks. Bios boot remains possible.
+ Supports 1 to 4 large hard disks. BIOS boot remains possible.
Check date code of Ami BIOS (at bottom of boot screen):
40-0100-001139-00101111-111192-486ABC-F (111192 will not support LBA)
@@ -133,7 +133,7 @@ void lba_enhancer_device::device_reset()
m_current_rom_start = 0xc8000 + (ioport("ROM_ADDRESS")->read()* 0x4000);
uint32_t current_rom_end = m_current_rom_start + 0x04000 - 1;
- m_isa->install_rom(this, m_current_rom_start, current_rom_end, "lbabios", "lbabios");
+ m_isa->install_rom(this, m_current_rom_start, current_rom_end, "lbabios");
logerror("LBA enhancer (for 28 bit LBA) located at BIOS address %x - %x\n", m_current_rom_start, current_rom_end);
}