diff options
author | 2018-05-29 23:57:09 +1000 | |
---|---|---|
committer | 2018-05-29 23:57:09 +1000 | |
commit | 5be75c4a63932afaaad8af9bb9e333d59cf8e788 (patch) | |
tree | f537efba469ce0b537976c243a91fa08571c26dd /src/devices/bus/newbrain | |
parent | 8f267237e19bec6d47247bb21d3664ae7b142a08 (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/newbrain')
-rw-r--r-- | src/devices/bus/newbrain/fdc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/newbrain/fdc.cpp b/src/devices/bus/newbrain/fdc.cpp index 62cda208cbe..48024662d67 100644 --- a/src/devices/bus/newbrain/fdc.cpp +++ b/src/devices/bus/newbrain/fdc.cpp @@ -49,9 +49,9 @@ ROM_START( newbrain_fdc ) ROM_REGION( 0x2000, Z80_TAG, 0 ) ROM_DEFAULT_BIOS("issue2") ROM_SYSTEM_BIOS( 0, "issue1", "Issue 1" ) - ROMX_LOAD( "d417-1.rom", 0x0000, 0x2000, CRC(40fad31c) SHA1(5137be4cc026972c0ffd4fa6990e8583bdfce163), ROM_BIOS(1) ) + ROMX_LOAD( "d417-1.rom", 0x0000, 0x2000, CRC(40fad31c) SHA1(5137be4cc026972c0ffd4fa6990e8583bdfce163), ROM_BIOS(0) ) ROM_SYSTEM_BIOS( 1, "issue2", "Issue 2" ) - ROMX_LOAD( "d417-2.rom", 0x0000, 0x2000, CRC(e8bda8b9) SHA1(c85a76a5ff7054f4ef4a472ce99ebaed1abd269c), ROM_BIOS(2) ) + ROMX_LOAD( "d417-2.rom", 0x0000, 0x2000, CRC(e8bda8b9) SHA1(c85a76a5ff7054f4ef4a472ce99ebaed1abd269c), ROM_BIOS(1) ) ROM_END |