summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author briantro <btroha@charter.net>2016-08-23 20:07:38 -0500
committer briantro <btroha@charter.net>2016-08-23 20:07:38 -0500
commit5f082505213aec4c3d7c28052046e207818f6038 (patch)
tree388fafae27332b0285a6a4dca777e8aee0145366
parent31d37c4f8c3d6e9620330c36d2a8addc4860cc5c (diff)
suprnova.cpp: Document the Euro BIOS label - NW
The Euro BIOS rom has been found as both SKNSE1 and also SKNSE2 both contain the same data and both report as VER.1.0.0E The SKNSE2 appears more often then "1" so the rom name has been changed to reflect that.
-rw-r--r--src/mame/drivers/suprnova.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/suprnova.cpp b/src/mame/drivers/suprnova.cpp
index 091dd432e74..0e33b3f356a 100644
--- a/src/mame/drivers/suprnova.cpp
+++ b/src/mame/drivers/suprnova.cpp
@@ -1025,12 +1025,13 @@ DRIVER_INIT_MEMBER(skns_state,galpans3) { machine().device<sknsspr_device>("sp
#define ROM_LOAD_BIOS(bios,name,offset,length,hash) \
ROMX_LOAD(name, offset, length, hash, ROM_BIOS(bios+1)) /* Note '+1' */
+ /* NOTE: The Euro BIOS rom has been found labeled SKNSE1 and SKNSE2 but the data is the same */
#define SKNS_BIOS \
ROM_REGION( 0x0100000, "maincpu", 0 ) \
ROM_SYSTEM_BIOS( 0, "japan", "Japan" ) \
ROM_LOAD_BIOS( 0, "sknsj1.u10", 0x000000, 0x080000, CRC(7e2b836c) SHA1(92c5a7a2472496028bff0e5980d41dd294f42144) ) \
ROM_SYSTEM_BIOS( 1, "europe", "Europe" ) \
- ROM_LOAD_BIOS( 1, "sknse1.u10", 0x000000, 0x080000, CRC(e2b9d7d1) SHA1(b530a3bb9dedc8cfafcba9f1f10277590be04a15) ) \
+ ROM_LOAD_BIOS( 1, "sknse2.u10", 0x000000, 0x080000, CRC(e2b9d7d1) SHA1(b530a3bb9dedc8cfafcba9f1f10277590be04a15) ) \
ROM_SYSTEM_BIOS( 2, "asia", "Asia" ) \
ROM_LOAD_BIOS( 2, "sknsa1.u10", 0x000000, 0x080000, CRC(745e5212) SHA1(caba649ab2d83b2d7e007eecee0fc582c019df38) ) \
ROM_SYSTEM_BIOS( 3, "usa", "USA" ) \