summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2016-06-08 15:48:22 +1000
committer Vas Crabb <vas@vastheman.com>2016-06-08 15:52:02 +1000
commit5ea67e8066fda5504085e2378abfa57a60eebc12 (patch)
tree13547803bb1d9c1ccd90e63829a41dc6b3cd2d3a /src/mame
parentffaa7ab2f15d429e5e58ce3767503f84cb5870e9 (diff)
ds2401: support DS2400-compatibility command 0x0F to read serial no.
fl7_3121: promoted to working [Vas Crabb] * Correct DS2401 hookup on PIA 0 port C * Make serial number ROM to match our program ROM dump * Inputs could be improved * Get past the data error on empty NVRAM with book (0) and reset (R) buttons New WORKING machines added -------------------------- Flaming 7 (Red, White & Blue 7's + Hollywood Nights) [Roberto Fresca, Vas Crabb]
Diffstat (limited to 'src/mame')
-rw-r--r--src/mame/drivers/goldstar.cpp10
-rw-r--r--src/mame/includes/goldstar.h2
2 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/goldstar.cpp b/src/mame/drivers/goldstar.cpp
index d8586100a0e..7c619e597a2 100644
--- a/src/mame/drivers/goldstar.cpp
+++ b/src/mame/drivers/goldstar.cpp
@@ -938,9 +938,9 @@ WRITE8_MEMBER(wingco_state::magodds_outb860_w)
// popmessage("magodds_outb860_w %02x\n", data);
}
-WRITE8_MEMBER(wingco_state::fl7w4_outb802_w)
+WRITE8_MEMBER(wingco_state::fl7w4_outc802_w)
{
- m_fl7w4_id->write((data & 0x40) ? 1 : 0);
+ m_fl7w4_id->write((data >> 6) & 0x01);
}
static ADDRESS_MAP_START( magodds_map, AS_PROGRAM, 8, wingco_state )
@@ -8193,7 +8193,7 @@ static MACHINE_CONFIG_DERIVED( flaming7, lucky8 )
// MCFG_CPU_IO_MAP(flaming7_readport)
MCFG_DEVICE_MODIFY("ppi8255_0")
- MCFG_I8255_OUT_PORTB_CB(WRITE8(wingco_state, fl7w4_outb802_w))
+ MCFG_I8255_OUT_PORTC_CB(WRITE8(wingco_state, fl7w4_outc802_w))
MCFG_DS2401_ADD("fl7w4_id")
MACHINE_CONFIG_END
@@ -14163,7 +14163,7 @@ ROM_START( fl7_3121 ) // Red, White & Blue 7's + Hollywood Nights. Serial 7D063
ROM_LOAD( "82s123.d12", 0x0000, 0x0020, CRC(6df3f972) SHA1(0096a7f7452b70cac6c0752cb62e24b643015b5c) )
ROM_REGION(0x8, "fl7w4_id", 0) /* Electronic Serial DS2401 */
- ROM_LOAD( "ds2401.bin", 0x0000, 0x0008, BAD_DUMP CRC(747b40b1) SHA1(3336d8de5333057beb5f55873b9410cc7bf73fbb) ) // Hand built... Last byte is CRC-8. Need to be checked.
+ ROM_LOAD( "ds2401.bin", 0x0000, 0x0008, CRC(b7078792) SHA1(f9eba1587b65ed9bc07ea6c4b2d393fb43f60659) ) // Hand built to match our ROM set
ROM_END
@@ -14912,7 +14912,7 @@ GAMEL( 1993, bingownga, bingowng, bingownga,bingownga,driver_device, 0,
// --- Flaming 7's hardware (W-4 derivative) ---
-GAME( 199?, fl7_3121, 0, flaming7, flaming7, driver_device, 0, ROT0, "Cyberdyne Systems", "Flaming 7 (Red, White & Blue 7's + Hollywood Nights)", MACHINE_NOT_WORKING )
+GAME( 199?, fl7_3121, 0, flaming7, flaming7, driver_device, 0, ROT0, "Cyberdyne Systems", "Flaming 7 (Red, White & Blue 7's + Hollywood Nights)", 0 )
// --- Wing W-8 hardware ---
diff --git a/src/mame/includes/goldstar.h b/src/mame/includes/goldstar.h
index 161c3a9bcd5..cee8e8b08f3 100644
--- a/src/mame/includes/goldstar.h
+++ b/src/mame/includes/goldstar.h
@@ -162,7 +162,7 @@ public:
DECLARE_WRITE8_MEMBER(magodds_outb850_w);
DECLARE_WRITE8_MEMBER(magodds_outb860_w);
- DECLARE_WRITE8_MEMBER(fl7w4_outb802_w);
+ DECLARE_WRITE8_MEMBER(fl7w4_outc802_w);
DECLARE_WRITE8_MEMBER(system_outputa_w);
DECLARE_WRITE8_MEMBER(system_outputb_w);
DECLARE_WRITE8_MEMBER(system_outputc_w);