diff options
Diffstat (limited to 'gdb/w89k-rom.c')
-rw-r--r-- | gdb/w89k-rom.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/w89k-rom.c b/gdb/w89k-rom.c index ef1a3ee..7e8a628 100644 --- a/gdb/w89k-rom.c +++ b/gdb/w89k-rom.c @@ -83,7 +83,7 @@ Specify the serial device it is connected to (e.g. /dev/ttya).", struct monitor_ops w89k_cmds = { 1, /* 1 for ASCII, 0 for binary */ "\n", /* monitor init string */ - "g = %x\n", /* execute or usually GO command */ + "g = %x\n", /* execute or usually GO command */ "g\n", /* continue command */ "t\n", /* single step */ "bp %x\n", /* set a breakpoint */ @@ -99,13 +99,13 @@ struct monitor_ops w89k_cmds = { "", /* delimiter */ "", /* the result */ }, - { /* set a register */ + { "r %s %x\n", /* set a register */ "", /* delimiter between registers */ "", /* the result */ }, { - "r %s\r", /* get a register */ + "r %s\n", /* get a register */ "", /* delimiter between registers */ "", /* the result */ }, |