diff options
Diffstat (limited to 'src/emu/machine/x76f100.c')
-rw-r--r-- | src/emu/machine/x76f100.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/emu/machine/x76f100.c b/src/emu/machine/x76f100.c index 75d72a7fee0..6db1f83a8a0 100644 --- a/src/emu/machine/x76f100.c +++ b/src/emu/machine/x76f100.c @@ -24,14 +24,7 @@ INLINE void ATTR_PRINTF(2,3) verboselog( int n_level, const char *s_fmt, ... ) va_start( v, s_fmt ); vsprintf( buf, s_fmt, v ); va_end( v ); - if( Machine->activecpu != NULL ) - { - logerror( "%08x: %s", cpu_get_pc(Machine->activecpu), buf ); - } - else - { - logerror( "(timer) : %s", buf ); - } + logerror( "%s: %s", cpuexec_describe_context(Machine), buf ); } } |