diff options
author | 2020-11-23 11:04:34 +0100 | |
---|---|---|
committer | 2020-11-23 11:04:34 +0100 | |
commit | 662cdfbabc12df2eaeb4463263fecf941d7b9852 (patch) | |
tree | da8ac1d82ff43b62b56e646a5d3edcb7ee727451 /src/mame | |
parent | 55ab48427fe0b83857b768d451a1843eec9c6127 (diff) |
Fix ficpio2, the chipset was using offset while forgetting it's s u32 *
Diffstat (limited to 'src/mame')
-rw-r--r-- | src/mame/drivers/at.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/at.cpp b/src/mame/drivers/at.cpp index a9b79ec54e8..0d970615a64 100644 --- a/src/mame/drivers/at.cpp +++ b/src/mame/drivers/at.cpp @@ -5146,7 +5146,7 @@ ROM_END // FIC 486-PIO-2 (4 ISA, 4 PCI) // VIA VT82C505 (ISA/VL to PCI bridge) + VT82C496G (system chipset) + VT82C406MV (keyboard controller, RTC, CMOS), NS311/312 or NS332 I/O ROM_START( ficpio2 ) - ROM_REGION32_LE(0x40000, "isa", 0) + ROM_REGION32_LE(0x40000, "isa", ROMREGION_ERASEFF) ROM_DEFAULT_BIOS("ficpio2c1") // 0 ROM_SYSTEM_BIOS(0, "ficpio2c7", "FIC 486-PIO-2 1.15C701") /* pnp, i/o core: NS 332, doesn't boot, requires cache emulation? */ |