microtch.cpp: Add BIOS 2.2 [Victor Fernandez (City Game), ClawGrip] (#7097)

This commit is contained in:
ClawGrip 2020-08-18 19:55:01 +02:00 committed by GitHub
parent c5fb647de6
commit 54c767b97b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -359,9 +359,11 @@ INPUT_CHANGED_MEMBER( microtouch_device::touch )
ROM_START(microtouch)
ROM_REGION(0x10000, "bios", 0)
ROM_SYSTEM_BIOS(0, "microtouch_5_6", "MicroTouch Rev.5.6") // "Excalibur", ISA card
ROMX_LOAD("microtouch_5604010_rev_5.6.u1", 0x0000, 0x10000, CRC(d19ee080) SHA1(c695405ec8c2ac4408a63bacfc68a5a4b878928c), ROM_BIOS(0)) // 27c512
ROMX_LOAD("microtouch_5604010_rev_5.6.u1", 0x0000, 0x10000, CRC(d19ee080) SHA1(c695405ec8c2ac4408a63bacfc68a5a4b878928c), ROM_BIOS(0)) // 27c512
ROM_SYSTEM_BIOS(1, "microtouch_5_5", "MicroTouch Rev.5.5") // "Kahuna", daughterboard integrated on monitor
ROMX_LOAD("microtouch_5603920_rev_5.5.u1", 0x0000, 0x08000, CRC(5cc164e7) SHA1(753277ce54e8be1b759c37ae760fe4a6846d1fae), ROM_BIOS(1))
ROM_SYSTEM_BIOS(2, "microtouch_2_2", "MicroTouch Rev.2.2") // "Excalibur, ISA card
ROMX_LOAD("microtouch_5604340_rev_2.2.u1", 0x0000, 0x08000, CRC(110f312f) SHA1(5a60d7d1f8a0b3898aabcabe43dc51e9f90306f7), ROM_BIOS(2)) // 27c512
ROM_END
static INPUT_PORTS_START(microtouch)
@ -396,4 +398,3 @@ const tiny_rom_entry *microtouch_device::device_rom_region() const
{
return ROM_NAME(microtouch);
}