diff options
author | 2020-08-18 19:55:01 +0200 | |
---|---|---|
committer | 2020-08-18 13:55:01 -0400 | |
commit | 54c767b97bc9009d40c30184a7b8a15b992b59f8 (patch) | |
tree | 5a2a16e6c7d7c565d9eb42a003275edf0ac6d4f5 | |
parent | c5fb647de6b4e8f319abed1bfebf3c733cd6cbab (diff) |
microtch.cpp: Add BIOS 2.2 [Victor Fernandez (City Game), ClawGrip] (#7097)
-rw-r--r-- | src/devices/machine/microtch.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/devices/machine/microtch.cpp b/src/devices/machine/microtch.cpp index 0d88839fe12..20a5d45757e 100644 --- a/src/devices/machine/microtch.cpp +++ b/src/devices/machine/microtch.cpp @@ -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); } - |