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/nes/disksys.cpp | |
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/nes/disksys.cpp')
-rw-r--r-- | src/devices/bus/nes/disksys.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/nes/disksys.cpp b/src/devices/bus/nes/disksys.cpp index c2bf3f6d2a8..0f350fb7922 100644 --- a/src/devices/bus/nes/disksys.cpp +++ b/src/devices/bus/nes/disksys.cpp @@ -59,9 +59,9 @@ MACHINE_CONFIG_END ROM_START( disksys ) ROM_REGION(0x2000, "drive", 0) ROM_SYSTEM_BIOS( 0, "2c33a-01a", "Famicom Disk System Bios") - ROMX_LOAD( "rp2c33a-01a.bin", 0x0000, 0x2000, CRC(5e607dcf) SHA1(57fe1bdee955bb48d357e463ccbf129496930b62), ROM_BIOS(1)) // newer, Nintendo logo has no shadow + ROMX_LOAD( "rp2c33a-01a.bin", 0x0000, 0x2000, CRC(5e607dcf) SHA1(57fe1bdee955bb48d357e463ccbf129496930b62), ROM_BIOS(0)) // newer, Nintendo logo has no shadow ROM_SYSTEM_BIOS( 1, "2c33-01", "Famicom Disk System Bios, older") - ROMX_LOAD( "rp2c33-01.bin", 0x0000, 0x2000, CRC(1c7ae5d5) SHA1(af5af53f66982e749643fdf8b2acbb7d4d3ed229), ROM_BIOS(2)) // older, Nintendo logo has shadow + ROMX_LOAD( "rp2c33-01.bin", 0x0000, 0x2000, CRC(1c7ae5d5) SHA1(af5af53f66982e749643fdf8b2acbb7d4d3ed229), ROM_BIOS(1)) // older, Nintendo logo has shadow ROM_END //------------------------------------------------- |