diff options
author | 2016-09-27 20:55:42 +0100 | |
---|---|---|
committer | 2016-09-28 18:00:46 +1000 | |
commit | 00f6256e4a761b07d31b76ef30dca5e4deecc98a (patch) | |
tree | fbadfe433a6275f647899ac5dcf98d31e0d5333d /src/devices/cpu/tms34010 | |
parent | fd279ffffaba099464a584b52c7b5436305493e5 (diff) |
change cpu cores pcbase handling to be consistent with the majority of cpu cores, now that the debugger relies on it. (nw)
Diffstat (limited to 'src/devices/cpu/tms34010')
-rw-r--r-- | src/devices/cpu/tms34010/tms34010.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/tms34010/tms34010.cpp b/src/devices/cpu/tms34010/tms34010.cpp index dd45a91a848..c2e67ccee7c 100644 --- a/src/devices/cpu/tms34010/tms34010.cpp +++ b/src/devices/cpu/tms34010/tms34010.cpp @@ -742,8 +742,8 @@ void tms340x0_device::execute_run() do { UINT16 op; - debugger_instruction_hook(this, m_pc); m_ppc = m_pc; + debugger_instruction_hook(this, m_pc); op = ROPCODE(); (this->*s_opcode_table[op >> 4])(op); } while (m_icount > 0); |