diff options
author | 2008-11-26 20:07:20 +0000 | |
---|---|---|
committer | 2008-11-26 20:07:20 +0000 | |
commit | 0df0ba2bc4184f336eaa6c8908f94e4259a6c70f (patch) | |
tree | fd6f265809b6ccc4e8c98e00256ad734866aa11e /src/emu/cpu/saturn/sattable.c | |
parent | c2ca1ef0cb3d7a9b275528c236515eb15ea67f56 (diff) |
Removed more cpunum_get_active().
Diffstat (limited to 'src/emu/cpu/saturn/sattable.c')
-rw-r--r-- | src/emu/cpu/saturn/sattable.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/emu/cpu/saturn/sattable.c b/src/emu/cpu/saturn/sattable.c index 75485d0db99..de75e2b723f 100644 --- a/src/emu/cpu/saturn/sattable.c +++ b/src/emu/cpu/saturn/sattable.c @@ -37,26 +37,26 @@ static const int sub_right[]={B,C,A,C, I,I,I,I, A,B,C,D, B,C,A,C}; static void saturn_invalid3( int op1, int op2, int op3 ) { - logerror( "SATURN#%d invalid opcode %x%x%x at %05x\n", - cpunum_get_active(), op1, op2, op3, saturn.pc-3 ); + logerror( "SATURN '%s' invalid opcode %x%x%x at %05x\n", + saturn.device->tag, op1, op2, op3, saturn.pc-3 ); } static void saturn_invalid4( int op1, int op2, int op3, int op4 ) { - logerror( "SATURN#%d invalid opcode %x%x%x%x at %05x\n", - cpunum_get_active(), op1, op2, op3, op4, saturn.pc-4 ); + logerror( "SATURN '%s' invalid opcode %x%x%x%x at %05x\n", + saturn.device->tag, op1, op2, op3, op4, saturn.pc-4 ); } static void saturn_invalid5( int op1, int op2, int op3, int op4, int op5 ) { - logerror( "SATURN#%d invalid opcode %x%x%x%x%x at %05x\n", - cpunum_get_active(), op1, op2, op3, op4, op5, saturn.pc-5 ); + logerror( "SATURN '%s' invalid opcode %x%x%x%x%x at %05x\n", + saturn.device->tag, op1, op2, op3, op4, op5, saturn.pc-5 ); } static void saturn_invalid6( int op1, int op2, int op3, int op4, int op5, int op6 ) { - logerror( "SATURN#%d invalid opcode %x%x%x%x%x%x at %05x\n", - cpunum_get_active(), op1, op2, op3, op4, op5, op6, saturn.pc-6 ); + logerror( "SATURN '%s' invalid opcode %x%x%x%x%x%x at %05x\n", + saturn.device->tag, op1, op2, op3, op4, op5, op6, saturn.pc-6 ); } |