diff options
Diffstat (limited to 'src/emu/cpu/tms7000/tms7000.c')
-rw-r--r-- | src/emu/cpu/tms7000/tms7000.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/emu/cpu/tms7000/tms7000.c b/src/emu/cpu/tms7000/tms7000.c index 2034cd6722e..d1f646d87db 100644 --- a/src/emu/cpu/tms7000/tms7000.c +++ b/src/emu/cpu/tms7000/tms7000.c @@ -28,8 +28,7 @@ // SJE: Fixed a mistake in tms70x0_pf_w where the wrong register was referenced // SJE: Implemented internal register file -#include "cpuintrf.h" -#include "cpuexec.h" +#include "emu.h" #include "debugger.h" #include "tms7000.h" @@ -367,7 +366,7 @@ void tms7000_set_irq_line(tms7000_state *cpustate, int irqline, int state) { /* check for transition */ cpustate->irq_state[irqline] = state; - LOG(("tms7000: (cpu '%s') set_irq_line (INT%d, state %d)\n", cpustate->device->tag, irqline+1, state)); + LOG(("tms7000: (cpu '%s') set_irq_line (INT%d, state %d)\n", cpustate->device->tag.cstr(), irqline+1, state)); if (state == CLEAR_LINE) { |