summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/n8080.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/n8080.c')
-rw-r--r--src/mame/drivers/n8080.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/n8080.c b/src/mame/drivers/n8080.c
index 2a8c7bd58f5..b5043ebccbb 100644
--- a/src/mame/drivers/n8080.c
+++ b/src/mame/drivers/n8080.c
@@ -393,7 +393,7 @@ INPUT_PORTS_END
static TIMER_DEVICE_CALLBACK( rst1_tick )
{
- n8080_state *n8080 = (n8080_state *)timer->machine->driver_data;
+ n8080_state *n8080 = (n8080_state *)timer.machine->driver_data;
int state = n8080->inte ? ASSERT_LINE : CLEAR_LINE;
/* V7 = 1, V6 = 0 */
@@ -402,7 +402,7 @@ static TIMER_DEVICE_CALLBACK( rst1_tick )
static TIMER_DEVICE_CALLBACK( rst2_tick )
{
- n8080_state *n8080 = (n8080_state *)timer->machine->driver_data;
+ n8080_state *n8080 = (n8080_state *)timer.machine->driver_data;
int state = n8080->inte ? ASSERT_LINE : CLEAR_LINE;
/* vblank */