diff options
Diffstat (limited to 'src/devices/cpu/hpc/hpc.cpp')
-rw-r--r-- | src/devices/cpu/hpc/hpc.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/devices/cpu/hpc/hpc.cpp b/src/devices/cpu/hpc/hpc.cpp index 6cf5f30eb37..cdfbe43dc1a 100644 --- a/src/devices/cpu/hpc/hpc.cpp +++ b/src/devices/cpu/hpc/hpc.cpp @@ -93,6 +93,9 @@ void hpc_device::psw_w(u8 data) void hpc_device::execute_run() { + m_core_regs[1] = m_program->read_word(0xfffe); + debugger_instruction_hook(m_core_regs[1]); + m_icount = 0; } |