mirror of
https://github.com/holub/mame
synced 2025-04-25 17:56:43 +03:00
Clean up MAME drivers which needed adjustment to match changes to the tms9995 (nw)
This commit is contained in:
parent
b9648ea91e
commit
1892ba703e
@ -142,7 +142,7 @@ WRITE8_MEMBER(jpmmps_state::jpmmps_ic22_portc_w)
|
||||
void jpmmps_state::machine_reset()
|
||||
{
|
||||
// Disable auto wait state generation by raising the READY line on reset
|
||||
static_cast<tms9995_device*>(machine().device("maincpu"))->set_ready(ASSERT_LINE);
|
||||
static_cast<tms9995_device*>(machine().device("maincpu"))->ready_line(ASSERT_LINE);
|
||||
}
|
||||
|
||||
static MACHINE_CONFIG_START( jpmmps, jpmmps_state )
|
||||
|
@ -75,7 +75,7 @@ INPUT_PORTS_END
|
||||
void jpms80_state::machine_reset()
|
||||
{
|
||||
// Disable auto wait state generation by raising the READY line on reset
|
||||
static_cast<tms9995_device*>(machine().device("maincpu"))->set_ready(ASSERT_LINE);
|
||||
static_cast<tms9995_device*>(machine().device("maincpu"))->ready_line(ASSERT_LINE);
|
||||
}
|
||||
|
||||
static MACHINE_CONFIG_START( jpms80, jpms80_state )
|
||||
|
@ -344,7 +344,7 @@ void looping_state::machine_start()
|
||||
void looping_state::machine_reset()
|
||||
{
|
||||
// Disable auto wait state generation by raising the READY line on reset
|
||||
static_cast<tms9995_device*>(machine().device("maincpu"))->set_ready(ASSERT_LINE);
|
||||
static_cast<tms9995_device*>(machine().device("maincpu"))->ready_line(ASSERT_LINE);
|
||||
}
|
||||
|
||||
/*************************************
|
||||
|
@ -113,7 +113,7 @@ WRITE8_MEMBER( nsm_state::cru_w )
|
||||
void nsm_state::machine_reset()
|
||||
{
|
||||
// Disable auto wait state generation by raising the READY line on reset
|
||||
static_cast<tms9995_device*>(machine().device("maincpu"))->set_ready(ASSERT_LINE);
|
||||
static_cast<tms9995_device*>(machine().device("maincpu"))->ready_line(ASSERT_LINE);
|
||||
}
|
||||
|
||||
static MACHINE_CONFIG_START( nsm, nsm_state )
|
||||
|
@ -399,7 +399,7 @@ GFXDECODE_END
|
||||
void nsmpoker_state::machine_reset()
|
||||
{
|
||||
// Disable auto wait state generation by raising the READY line on reset
|
||||
static_cast<tms9995_device*>(machine().device("maincpu"))->set_ready(ASSERT_LINE);
|
||||
static_cast<tms9995_device*>(machine().device("maincpu"))->ready_line(ASSERT_LINE);
|
||||
}
|
||||
|
||||
/*************************
|
||||
|
@ -290,7 +290,7 @@ void pachifev_state::machine_reset()
|
||||
{
|
||||
// Pulling down the line on RESET configures the CPU to insert one wait
|
||||
// state on external memory accesses
|
||||
static_cast<tms9995_device*>(machine().device("maincpu"))->set_ready(CLEAR_LINE);
|
||||
static_cast<tms9995_device*>(machine().device("maincpu"))->ready_line(CLEAR_LINE);
|
||||
|
||||
m_power=0;
|
||||
m_max_power=0;
|
||||
|
Loading…
Reference in New Issue
Block a user