diff options
author | Stu Grossman <grossman@cygnus> | 1995-04-03 21:03:27 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1995-04-03 21:03:27 +0000 |
commit | 3da4297eae24611c779264c25d14d10977a503db (patch) | |
tree | b58f9f0699d6b80f17aca012df6c3e1c08a02b95 /gdb/monitor.h | |
parent | 4507de2d186c4af26f3d849ef6c5b7be62e7aab3 (diff) | |
download | gdb-3da4297eae24611c779264c25d14d10977a503db.zip gdb-3da4297eae24611c779264c25d14d10977a503db.tar.gz gdb-3da4297eae24611c779264c25d14d10977a503db.tar.bz2 |
* monitor.h: Add MO_GETMEM_NEEDS_RANGE flag.
* monitor.c (monitor_read_memory): Use previously mentioned flag
to send proper format memory examine commands to the w89k monitor.
Also, try to handle bizarre format of memory dump...
* op50-rom.c w89k-rom.c: Update to new monitor.[ch] conventions.
Diffstat (limited to 'gdb/monitor.h')
-rw-r--r-- | gdb/monitor.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/monitor.h b/gdb/monitor.h index 1bd4b7c..6d8ae48 100644 --- a/gdb/monitor.h +++ b/gdb/monitor.h @@ -125,6 +125,7 @@ struct monitor_ops #define MO_NEED_REGDUMP_AFTER_CONT 0x4 /* If set, then monitor doesn't auto- matically supply register dump when coming back after a continue. */ +#define MO_GETMEM_NEEDS_RANGE 0x8 /* getmem needs start addr and end addr */ extern struct monitor_ops *current_monitor; |