From 2b9fc354e6096b1f18d07960c32644523ee9c403 Mon Sep 17 00:00:00 2001 From: Ivan Vangelista Date: Thu, 9 May 2024 18:57:19 +0200 Subject: - pinball/gts1.cpp: redumped A1752CF ROM [Paulo Gordinho] - devices/cpu/pps4/pps4.cpp: reverted incorrect ADSK change that was originated from a bad dump --- src/devices/cpu/pps4/pps4.cpp | 2 +- src/mame/pinball/gts1.cpp | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/src/devices/cpu/pps4/pps4.cpp b/src/devices/cpu/pps4/pps4.cpp index aaf83860407..fbf2f3a27ea 100644 --- a/src/devices/cpu/pps4/pps4.cpp +++ b/src/devices/cpu/pps4/pps4.cpp @@ -252,7 +252,7 @@ void pps4_device::iADC() */ void pps4_device::iADSK() { - m_A = m_A + M() + m_C; // This fixes the diagnostic test button, same as pinmame. It means ADSK and ADCSK are the same. + m_A = m_A + M(); //m_A += M(); m_C = (m_A > 15) ? 1 : 0; m_Skip = m_C; diff --git a/src/mame/pinball/gts1.cpp b/src/mame/pinball/gts1.cpp index c6cf7a489bf..6c965a03057 100644 --- a/src/mame/pinball/gts1.cpp +++ b/src/mame/pinball/gts1.cpp @@ -801,8 +801,8 @@ void gts1_state::p2(machine_config &config) #define GTS1_BIOS \ ROM_REGION( 0x1000, "maincpu", ROMREGION_ERASEFF ) \ - ROM_LOAD("u5_cf.bin", 0x0000, 0x0800, CRC(e0d4b405) SHA1(17aadd79c0dcbb336aadd5d203bc6ca866492345) ) \ - ROM_LOAD("u4_ce.bin", 0x0800, 0x0800, CRC(4cd312dd) SHA1(31245daa9972ef8652caee69986585bb8239e86e) ) + ROM_LOAD("a1752cf.u5", 0x0000, 0x0800, CRC(614a3bd9) SHA1(febca18fb6f96037ca82e515dd161dfcb0e4c776) ) \ + ROM_LOAD("a1753ce.u4", 0x0800, 0x0800, CRC(4cd312dd) SHA1(31245daa9972ef8652caee69986585bb8239e86e) ) ROM_START( gts1 ) @@ -990,9 +990,7 @@ ROM_START(sinbad) ROM_END ROM_START(sinbadn) - ROM_REGION( 0x1000, "maincpu", 0) - ROM_LOAD("u5_cf.bin", 0x0000, 0x0800, CRC(e0d4b405) SHA1(17aadd79c0dcbb336aadd5d203bc6ca866492345)) - ROM_LOAD("u4_ce.bin", 0x0800, 0x0800, CRC(4cd312dd) SHA1(31245daa9972ef8652caee69986585bb8239e86e)) + GTS1_BIOS ROM_REGION( 0x0400, "module", 0 ) ROM_LOAD("412no1.cpu", 0x0000, 0x0400, CRC(f5373f5f) SHA1(027840501416ff01b2adf07188c7d667adf3ad5f)) -- cgit v1.2.3-70-g09d2