summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/minx/minx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/minx/minx.cpp')
-rw-r--r--src/devices/cpu/minx/minx.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/devices/cpu/minx/minx.cpp b/src/devices/cpu/minx/minx.cpp
index dcf11c24f25..28b1bcb5670 100644
--- a/src/devices/cpu/minx/minx.cpp
+++ b/src/devices/cpu/minx/minx.cpp
@@ -48,7 +48,6 @@ TODO:
#include "emu.h"
#include "minx.h"
#include "minxd.h"
-#include "debugger.h"
#define FLAG_I 0x80
#define FLAG_D 0x40
@@ -206,7 +205,7 @@ void minx_cpu_device::execute_run()
/* Set Interrupt Branch flag */
m_F |= 0x80;
m_V = 0;
- m_PC = rd16( standard_irq_callback( 0 ) << 1 );
+ m_PC = rd16( standard_irq_callback( 0, m_PC ) << 1 );
m_icount -= 28; /* This cycle count is a guess */
}
}