Clean up MAME drivers which needed adjustment to match changes to the tms9995 (nw)

This commit is contained in:
Scott Stone 2016-03-30 21:58:23 -04:00
parent b9648ea91e
commit 1892ba703e
6 changed files with 6 additions and 6 deletions

View File

@ -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 )

View File

@ -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 )

View File

@ -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);
}
/*************************************

View File

@ -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 )

View File

@ -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);
}
/*************************

View File

@ -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;