summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/model1.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/model1.c')
-rw-r--r--src/mame/machine/model1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/model1.c b/src/mame/machine/model1.c
index edb8e4a3a6f..080a3d1dab2 100644
--- a/src/mame/machine/model1.c
+++ b/src/mame/machine/model1.c
@@ -2152,7 +2152,7 @@ READ16_MEMBER(model1_state::model1_tgp_vr_adr_r)
if ( m_ram_adr == 0 && m_copro_fifoin_num != 0 )
{
/* spin the main cpu and let the TGP catch up */
- device_spin_until_time(&space.device(), attotime::from_usec(100));
+ space.device().execute().spin_until_time(attotime::from_usec(100));
}
return m_ram_adr;
@@ -2178,7 +2178,7 @@ READ16_MEMBER(model1_state::model1_vr_tgp_ram_r)
if ( m_ram_adr == 0 && r == 0xffff )
{
/* if the TGP is busy, spin some more */
- device_spin_until_time(&space.device(), attotime::from_usec(100));
+ space.device().execute().spin_until_time(attotime::from_usec(100));
}
if ( m_ram_adr & 0x8000 )