summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/eprom.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/eprom.c')
-rw-r--r--src/mame/drivers/eprom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/eprom.c b/src/mame/drivers/eprom.c
index ec0e167ec50..2f247ad42c4 100644
--- a/src/mame/drivers/eprom.c
+++ b/src/mame/drivers/eprom.c
@@ -144,7 +144,7 @@ WRITE16_MEMBER(eprom_state::sync_w)
m_sync_data[offset] = newword;
if ((oldword & 0xff00) != (newword & 0xff00))
- device_yield(&space.device());
+ space.device().execute().yield();
}