summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/mboard.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/mboard.c')
-rw-r--r--src/mess/machine/mboard.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mess/machine/mboard.c b/src/mess/machine/mboard.c
index 8200153b1d7..d17e36af32c 100644
--- a/src/mess/machine/mboard.c
+++ b/src/mess/machine/mboard.c
@@ -219,13 +219,13 @@ WRITE32_HANDLER( mboard_write_board_32 )
WRITE8_HANDLER( mboard_write_LED_8 )
{
write_LED(data);
- device_spin_until_time(&space->device(), attotime::from_usec(7));
+ space->device().execute().spin_until_time(attotime::from_usec(7));
}
WRITE16_HANDLER( mboard_write_LED_16 )
{
write_LED(data >> 8);
- device_spin_until_time(&space->device(), attotime::from_usec(9));
+ space->device().execute().spin_until_time(attotime::from_usec(9));
}
WRITE32_HANDLER( mboard_write_LED_32 )
@@ -235,7 +235,7 @@ WRITE32_HANDLER( mboard_write_LED_32 )
if (offset) write_LED(data);
else write_LED(data >> 24);
logerror("write LED 32 o: %08x d: %08x\n",offset,data);
-// device_spin_until_time(&space->device(), ATTOTIME_IN_USEC(20));
+// space->device().execute().spin_until_time(ATTOTIME_IN_USEC(20));
}