diff options
author | Stan Shebs <shebs@codesourcery.com> | 1997-09-16 23:58:01 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1997-09-16 23:58:01 +0000 |
commit | c77bcbc2f741884134a1b8130023d7b92ff869b5 (patch) | |
tree | 7909bd67d66d262dfe5a418031d3c2e0b99021db /gdb/remote-est.c | |
parent | 8603b0f0ff1eb4e202e3ea8c1371bc038b6b9dad (diff) | |
download | gdb-c77bcbc2f741884134a1b8130023d7b92ff869b5.zip gdb-c77bcbc2f741884134a1b8130023d7b92ff869b5.tar.gz gdb-c77bcbc2f741884134a1b8130023d7b92ff869b5.tar.bz2 |
* monitor.h (MO_SREC_ACK_PLUS, MO_SREC_ACK_ROTATE): New flags.
* monitor.c (monitor_wait_srec_ack): Add DINK32-specific ack code.
* dsrec.c (load_srec): Always write a header S-record.
* dink32-rom.c (dink32_regnames): Fix the names of float registers.
(dink32_cmds): Set to use S-record downloading with acks.
* remote-est.c (est_cmds): Add MO_SREC_ACK_PLUS flag.
Diffstat (limited to 'gdb/remote-est.c')
-rw-r--r-- | gdb/remote-est.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/remote-est.c b/gdb/remote-est.c index 25c25ac..8862cc3 100644 --- a/gdb/remote-est.c +++ b/gdb/remote-est.c @@ -98,7 +98,7 @@ static char *est_inits[] = {"he\r", /* Resets the prompt, and clears repeated cm static struct monitor_ops est_cmds = { MO_CLR_BREAK_USES_ADDR | MO_FILL_USES_ADDR | MO_NEED_REGDUMP_AFTER_CONT | - MO_SREC_ACK, + MO_SREC_ACK | MO_SREC_ACK_PLUS, est_inits, /* Init strings */ "go\r", /* continue command */ "sidr\r", /* single step */ |