summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/scsi
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2018-05-29 23:57:09 +1000
committer Vas Crabb <vas@vastheman.com>2018-05-29 23:57:09 +1000
commit5be75c4a63932afaaad8af9bb9e333d59cf8e788 (patch)
treef537efba469ce0b537976c243a91fa08571c26dd /src/devices/bus/scsi
parent8f267237e19bec6d47247bb21d3664ae7b142a08 (diff)
Move the +1 to the proper place in the ROM BIOS macros - that's been
confusing people for far too long. Yes, this is a change in behaviour. Add a valdiation check for ROMs with BIOS flag set that are unselectable, fix the things it uncovers. (nw) Fix other random stuff.
Diffstat (limited to 'src/devices/bus/scsi')
-rw-r--r--src/devices/bus/scsi/sa1403d.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/bus/scsi/sa1403d.cpp b/src/devices/bus/scsi/sa1403d.cpp
index b38717b3f5b..902b69f5b63 100644
--- a/src/devices/bus/scsi/sa1403d.cpp
+++ b/src/devices/bus/scsi/sa1403d.cpp
@@ -26,20 +26,20 @@ ROM_START( sa1403d )
ROM_REGION( 0x4000, "sa1403d", 0 )
ROM_DEFAULT_BIOS( "as31" )
ROM_SYSTEM_BIOS( 0, "as30", "AS30" )
+ ROMX_LOAD( "i", 0x0000, 0x1000, NO_DUMP, ROM_BIOS(0) )
+ ROMX_LOAD( "ii", 0x1000, 0x1000, NO_DUMP, ROM_BIOS(0) )
+ ROMX_LOAD( "iii", 0x2000, 0x1000, NO_DUMP, ROM_BIOS(0) )
+ ROMX_LOAD( "iv", 0x3000, 0x1000, NO_DUMP, ROM_BIOS(0) )
+ ROM_SYSTEM_BIOS( 1, "as31", "AS31" )
ROMX_LOAD( "i", 0x0000, 0x1000, NO_DUMP, ROM_BIOS(1) )
ROMX_LOAD( "ii", 0x1000, 0x1000, NO_DUMP, ROM_BIOS(1) )
ROMX_LOAD( "iii", 0x2000, 0x1000, NO_DUMP, ROM_BIOS(1) )
ROMX_LOAD( "iv", 0x3000, 0x1000, NO_DUMP, ROM_BIOS(1) )
- ROM_SYSTEM_BIOS( 1, "as31", "AS31" )
+ ROM_SYSTEM_BIOS( 2, "u50", "Diagnostic PROM set 12668" )
ROMX_LOAD( "i", 0x0000, 0x1000, NO_DUMP, ROM_BIOS(2) )
ROMX_LOAD( "ii", 0x1000, 0x1000, NO_DUMP, ROM_BIOS(2) )
ROMX_LOAD( "iii", 0x2000, 0x1000, NO_DUMP, ROM_BIOS(2) )
ROMX_LOAD( "iv", 0x3000, 0x1000, NO_DUMP, ROM_BIOS(2) )
- ROM_SYSTEM_BIOS( 2, "u50", "Diagnostic PROM set 12668" )
- ROMX_LOAD( "i", 0x0000, 0x1000, NO_DUMP, ROM_BIOS(3) )
- ROMX_LOAD( "ii", 0x1000, 0x1000, NO_DUMP, ROM_BIOS(3) )
- ROMX_LOAD( "iii", 0x2000, 0x1000, NO_DUMP, ROM_BIOS(3) )
- ROMX_LOAD( "iv", 0x3000, 0x1000, NO_DUMP, ROM_BIOS(3) )
ROM_END