From 2a975e4737fea48581d651fd7ca49a751c3890a7 Mon Sep 17 00:00:00 2001 From: Aaron Giles Date: Mon, 8 Dec 2008 08:44:36 +0000 Subject: [PATCH] Fixed call to v60_stall() --- src/mame/machine/model1.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mame/machine/model1.c b/src/mame/machine/model1.c index 4c1e898c450..3b4a2a1319b 100644 --- a/src/mame/machine/model1.c +++ b/src/mame/machine/model1.c @@ -6,6 +6,7 @@ #include "deprecat.h" #include "debugger.h" #include "cpu/mb86233/mb86233.h" +#include "cpu/v60/v60.h" #include "includes/model1.h" enum {FIFO_SIZE = 256}; @@ -2028,8 +2029,7 @@ static UINT32 copro_fifoout_pop(const address_space *space) if (copro_fifoout_num == 0) { // Reading from empty FIFO causes the v60 to enter wait state - extern void v60_stall(void); - v60_stall(); + v60_stall(space->machine->cpu[0]); timer_call_after_resynch(space->machine, NULL, 0, NULL);