Fixed call to v60_stall()
This commit is contained in:
parent
d4e2eb2472
commit
2a975e4737
@ -6,6 +6,7 @@
|
|||||||
#include "deprecat.h"
|
#include "deprecat.h"
|
||||||
#include "debugger.h"
|
#include "debugger.h"
|
||||||
#include "cpu/mb86233/mb86233.h"
|
#include "cpu/mb86233/mb86233.h"
|
||||||
|
#include "cpu/v60/v60.h"
|
||||||
#include "includes/model1.h"
|
#include "includes/model1.h"
|
||||||
|
|
||||||
enum {FIFO_SIZE = 256};
|
enum {FIFO_SIZE = 256};
|
||||||
@ -2028,8 +2029,7 @@ static UINT32 copro_fifoout_pop(const address_space *space)
|
|||||||
if (copro_fifoout_num == 0)
|
if (copro_fifoout_num == 0)
|
||||||
{
|
{
|
||||||
// Reading from empty FIFO causes the v60 to enter wait state
|
// Reading from empty FIFO causes the v60 to enter wait state
|
||||||
extern void v60_stall(void);
|
v60_stall(space->machine->cpu[0]);
|
||||||
v60_stall();
|
|
||||||
|
|
||||||
timer_call_after_resynch(space->machine, NULL, 0, NULL);
|
timer_call_after_resynch(space->machine, NULL, 0, NULL);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user