aboutsummaryrefslogtreecommitdiff
path: root/gdb/monitor.h
diff options
context:
space:
mode:
authorStan Shebs <shebs@codesourcery.com>1997-09-16 23:58:01 +0000
committerStan Shebs <shebs@codesourcery.com>1997-09-16 23:58:01 +0000
commitc77bcbc2f741884134a1b8130023d7b92ff869b5 (patch)
tree7909bd67d66d262dfe5a418031d3c2e0b99021db /gdb/monitor.h
parent8603b0f0ff1eb4e202e3ea8c1371bc038b6b9dad (diff)
downloadgdb-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/monitor.h')
-rw-r--r--gdb/monitor.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/gdb/monitor.h b/gdb/monitor.h
index 33ef9a9..cf1e0ce 100644
--- a/gdb/monitor.h
+++ b/gdb/monitor.h
@@ -189,6 +189,14 @@ struct monitor_ops
#define MO_CLR_BREAK_1_BASED 0x20000
+/* If set, then the monitor acks srecords with a plus sign. */
+
+#define MO_SREC_ACK_PLUS 0x40000
+
+/* If set, then the monitor "acks" srecords with rotating lines. */
+
+#define MO_SREC_ACK_ROTATE 0x80000
+
#define SREC_SIZE 160
extern void monitor_open PARAMS ((char *args, struct monitor_ops *ops,