summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu
diff options
context:
space:
mode:
author Michael Zapf <Michael.Zapf@mizapf.de>2015-08-23 17:16:37 +0200
committer Michael Zapf <Michael.Zapf@mizapf.de>2015-08-23 17:17:02 +0200
commit857d055ffc5f10001d2f88721febb20c1fa42cf8 (patch)
tree62d8585817d2a1308749636ababfb6a04df4a817 /src/emu/cpu
parent6a461218bd1d7d470a9de44da926dbf02f748065 (diff)
Just some logging improvement
Diffstat (limited to 'src/emu/cpu')
-rw-r--r--src/emu/cpu/tms9900/tms9995.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/tms9900/tms9995.c b/src/emu/cpu/tms9900/tms9995.c
index d561a0550c9..ae9248fd82d 100644
--- a/src/emu/cpu/tms9900/tms9995.c
+++ b/src/emu/cpu/tms9900/tms9995.c
@@ -1412,7 +1412,7 @@ void tms9995_device::decode(UINT16 inst)
if (decoded == NULL)
{
// not found
- logerror("tms9995: Unknown opcode %04x, will trigger MID\n", inst);
+ logerror("tms9995: Undefined opcode %04x at logical address %04x, will trigger MID\n", inst, PC);
m_decoded[dindex].IR = 0;
m_decoded[dindex].command = MID;
}