diff options
| author | 2016-09-27 14:24:33 +0100 | |
|---|---|---|
| committer | 2016-09-28 17:45:37 +1000 | |
| commit | fd279ffffaba099464a584b52c7b5436305493e5 (patch) | |
| tree | 31fdd998bc915b83a27f6ea1fbae29f662b32917 /src/emu/debug/debugcmd.cpp | |
| parent | 1de6465b1837b2dc391dcbe90df23a9c8427c750 (diff) | |
Make sure all cpu's export STATE_GENPCBASE and use safe_pcbase() for everything in the debugger, which allows interruptible cpu's to work properly. [smf]
Diffstat (limited to 'src/emu/debug/debugcmd.cpp')
| -rw-r--r-- | src/emu/debug/debugcmd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/debugcmd.cpp b/src/emu/debug/debugcmd.cpp index 99cdefb3b36..9fd4d1a860b 100644 --- a/src/emu/debug/debugcmd.cpp +++ b/src/emu/debug/debugcmd.cpp @@ -2628,7 +2628,7 @@ void debugger_commands::execute_trackpc(int ref, int params, const char *param[] // Insert current pc if (m_cpu.get_visible_cpu() == cpu) { - const offs_t pc = cpu->safe_pc(); + const offs_t pc = cpu->safe_pcbase(); cpu->debug()->set_track_pc_visited(pc); } m_console.printf("PC tracking enabled\n"); |
