Previous 199869 Revisions Next

r19061 Tuesday 20th November, 2012 at 07:33:06 UTC by Miodrag Milanović
Sega VMU added more bioses [El Barto]
[src/mess/drivers]svmu.c

trunk/src/mess/drivers/svmu.c
r19060r19061
347347/* ROM definition */
348348ROM_START( svmu )
349349   ROM_REGION( 0x10000, "bios", 0 )
350   ROM_DEFAULT_BIOS("jp1004")
350351    // these ROMs come from the Sega Katana SDK and are scrambled, a simple way to restore it is to remove the first 4 bytes and xor the whole file for the xor key.
351   ROM_SYSTEM_BIOS(0, "jp1004", "Japan v1.004")
352   ROMX_LOAD( "fbios.bin",  0x0000, 0x10000, CRC(8e0f867a) SHA1(dc2fa2963138a1049a43f7f36439ad0a416ee8b4), ROM_BIOS(1))   // from Sega Katana SDK (original file: fbios.sbf, CRC: c7c77b3c, xor key: 0x37)
353   ROM_SYSTEM_BIOS(1, "jp1004q", "Japan v1.004 (quick start)")   // automatically boot the first game found in the flash
354   ROMX_LOAD( "qbios.bin",  0x0000, 0x10000, CRC(395e25f2) SHA1(37dea034322b5b80b35b2de784298d32c71ba7a3), ROM_BIOS(2))   // from Sega Katana SDK (original file: qbios.sbf, CRC: eed5524c, xor key: 0x43)
352   ROM_SYSTEM_BIOS(0, "jp1001", "VMS Japanese BIOS (v1.001)")
353   ROMX_LOAD("vmu1001.bin", 0x0000, 0x10000, CRC(e6339f4a) SHA1(688b2e1ff8c60bde6e8b07a2d2695cdacc07bd0c), ROM_BIOS(1))
354   ROM_SYSTEM_BIOS(1, "jp1002", "VMS Japanese BIOS (v1.002)")
355   ROMX_LOAD("vmu1002.bin", 0x0000, 0x10000, CRC(6c020d48) SHA1(9ee7c87d7b033235e0b315a0b421e70deb547c7a), ROM_BIOS(2))
356   ROM_SYSTEM_BIOS(2, "jp1004", "VMS Japanese BIOS (v1.004)")
357   ROMX_LOAD("vmu1004.bin", 0x0000, 0x10000, CRC(8e0f867a) SHA1(dc2fa2963138a1049a43f7f36439ad0a416ee8b4), ROM_BIOS(3))   // from Sega Katana SDK (original file: fbios.sbf, CRC: c7c77b3c, xor key: 0x37)
358   ROM_SYSTEM_BIOS(3, "jp1005", "VMS Japanese BIOS (v1.005)")
359   ROMX_LOAD("vmu1005.bin", 0x0000, 0x10000, CRC(47623324) SHA1(fca1aceff8a2f8c6826f3a865f4d5ef88dfd9ed1), ROM_BIOS(4))
360   ROM_SYSTEM_BIOS(4, "jp1004q", "Japan v1.004 (quick start)")   // automatically boot the first game found in the flash
361   ROMX_LOAD( "vmu1004q.bin",  0x0000, 0x10000, CRC(395e25f2) SHA1(37dea034322b5b80b35b2de784298d32c71ba7a3), ROM_BIOS(5))   // from Sega Katana SDK (original file: qbios.sbf, CRC: eed5524c, xor key: 0x43)   
362   ROM_SYSTEM_BIOS(5, "dev1004", "VMS Japanese Dev BIOS (v1.004)")
363   ROMX_LOAD( "vmsdev1004.bin", 0x0000, 0x10000, CRC(395e25f2) SHA1(37dea034322b5b80b35b2de784298d32c71ba7a3), ROM_BIOS(6))
355364ROM_END
356365
357366

Previous 199869 Revisions Next


© 1997-2024 The MAME Team