summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/debugcpu.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/debug/debugcpu.c')
-rw-r--r--src/emu/debug/debugcpu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/debug/debugcpu.c b/src/emu/debug/debugcpu.c
index 85608e428c9..014a0b724be 100644
--- a/src/emu/debug/debugcpu.c
+++ b/src/emu/debug/debugcpu.c
@@ -299,7 +299,7 @@ void debug_cpu_source_script(running_machine &machine, const char *file)
if (machine.phase() == MACHINE_PHASE_RUNNING)
debug_console_printf(machine, "Cannot open command file '%s'\n", file);
else
- fatalerror("Cannot open command file '%s'", file);
+ fatalerror("Cannot open command file '%s'\n", file);
}
}
}
@@ -984,7 +984,7 @@ UINT64 debug_read_opcode(address_space *_space, offs_t address, int size, int ar
break;
default:
- fatalerror("debug_read_opcode: unknown type = %d", space->data_width() / 8 * 10 + size);
+ fatalerror("debug_read_opcode: unknown type = %d\n", space->data_width() / 8 * 10 + size);
break;
}