summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/debugcpu.cpp
diff options
context:
space:
mode:
author Lord-Nightmare <Lord-Nightmare@users.noreply.github.com>2016-09-27 18:05:57 -0400
committer Lord-Nightmare <Lord-Nightmare@users.noreply.github.com>2016-09-27 18:05:57 -0400
commit32a5bcf975131026e68eb3a3d9e59cf1bc675c13 (patch)
tree2694d44d07f2c2491aca46614d47ed731705769a /src/emu/debug/debugcpu.cpp
parente8d2853334d6779213352b2e7aa442d1ace45516 (diff)
Revert "fix disassembly if 6809 is interrupted mid-instruction [smf]"
This reverts commit 320121823c456f6a2a9f8ba37851aa13e0ab3011.
Diffstat (limited to 'src/emu/debug/debugcpu.cpp')
-rw-r--r--src/emu/debug/debugcpu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/debugcpu.cpp b/src/emu/debug/debugcpu.cpp
index 7fbcb29b3ea..7832a03fa46 100644
--- a/src/emu/debug/debugcpu.cpp
+++ b/src/emu/debug/debugcpu.cpp
@@ -3064,7 +3064,7 @@ UINT32 device_debug::dasm_wrapped(std::string &buffer, offs_t pc)
UINT64 device_debug::get_current_pc(symbol_table &table, void *ref)
{
device_t *device = reinterpret_cast<device_t *>(table.globalref());
- return device->safe_pcbase();
+ return device->safe_pc();
}