diff options
author | Stan Shebs <shebs@codesourcery.com> | 1999-04-26 18:34:20 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1999-04-26 18:34:20 +0000 |
commit | 7a292a7adf506b866905b06b3024c0fd411c4583 (patch) | |
tree | 5b208bb48269b8a82d5c3a5f19c87b45a62a22f4 /gdb/dbug-rom.c | |
parent | 1996fae84682e8ddd146215dd2959ad1ec924c09 (diff) | |
download | gdb-7a292a7adf506b866905b06b3024c0fd411c4583.zip gdb-7a292a7adf506b866905b06b3024c0fd411c4583.tar.gz gdb-7a292a7adf506b866905b06b3024c0fd411c4583.tar.bz2 |
import gdb-19990422 snapshot
Diffstat (limited to 'gdb/dbug-rom.c')
-rw-r--r-- | gdb/dbug-rom.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/dbug-rom.c b/gdb/dbug-rom.c index fa9c974..494bd44 100644 --- a/gdb/dbug-rom.c +++ b/gdb/dbug-rom.c @@ -1,5 +1,5 @@ /* Remote debugging interface to dBUG ROM monitor for GDB, the GNU debugger. - Copyright 1996 Free Software Foundation, Inc. + Copyright 1996, 1999 Free Software Foundation, Inc. Written by Stan Shebs of Cygnus Support. @@ -97,12 +97,12 @@ init_dbug_cmds(void) dbug_cmds.flags = MO_CLR_BREAK_USES_ADDR | MO_GETMEM_NEEDS_RANGE | MO_FILL_USES_ADDR; dbug_cmds.init = dbug_inits; /* Init strings */ dbug_cmds.cont = "go\r"; /* continue command */ - dbug_cmds.step = "step\r"; /* single step */ + dbug_cmds.step = "trace\r"; /* single step */ dbug_cmds.stop = NULL; /* interrupt command */ dbug_cmds.set_break = "br %x\r"; /* set a breakpoint */ - dbug_cmds.clr_break = "br -c %x\r"; /* clear a breakpoint */ - dbug_cmds.clr_all_break = "br -c\r"; /* clear all breakpoints */ - dbug_cmds.fill = "bf.b %x %x %x"; /* fill (start end val) */ + dbug_cmds.clr_break = "br -r %x\r"; /* clear a breakpoint */ + dbug_cmds.clr_all_break = "br -r\r"; /* clear all breakpoints */ + dbug_cmds.fill = "bf.b %x %x %x\r"; /* fill (start end val) */ dbug_cmds.setmem.cmdb = "mm.b %x %x\r"; /* setmem.cmdb (addr, value) */ dbug_cmds.setmem.cmdw = "mm.w %x %x\r"; /* setmem.cmdw (addr, value) */ dbug_cmds.setmem.cmdl = "mm.l %x %x\r"; /* setmem.cmdl (addr, value) */ |