aboutsummaryrefslogtreecommitdiff
path: root/gdb/mon960-rom.c
diff options
context:
space:
mode:
authorStan Shebs <shebs@codesourcery.com>1996-04-28 22:14:17 +0000
committerStan Shebs <shebs@codesourcery.com>1996-04-28 22:14:17 +0000
commit5a2934b4bef77fa27323891333aa99ebb519cf4e (patch)
tree4b3b4b54f0a74b7fe041b11adc0aa7118dd7a96c /gdb/mon960-rom.c
parentd2c17d4f50b22b299c2cce8df506287fb9ab4484 (diff)
downloadfsf-binutils-gdb-5a2934b4bef77fa27323891333aa99ebb519cf4e.zip
fsf-binutils-gdb-5a2934b4bef77fa27323891333aa99ebb519cf4e.tar.gz
fsf-binutils-gdb-5a2934b4bef77fa27323891333aa99ebb519cf4e.tar.bz2
* mon960-rom.c (mon960_cmds): Remove forward decl.
(mon960_load): Use current_monitor instead of mon960_cmds. (mon960_regnames): Remove backslashes from line ends. (_initialize_mon960): Fix documentation string.
Diffstat (limited to 'gdb/mon960-rom.c')
-rw-r--r--gdb/mon960-rom.c22
1 files changed, 10 insertions, 12 deletions
diff --git a/gdb/mon960-rom.c b/gdb/mon960-rom.c
index 7fc5080..566ed17 100644
--- a/gdb/mon960-rom.c
+++ b/gdb/mon960-rom.c
@@ -45,8 +45,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
static struct target_ops mon960_ops;
-static struct monitor_ops mon960_cmds;
-
static void mon960_open PARAMS ((char *args, int from_tty));
#ifdef USE_GENERIC_LOAD
@@ -98,9 +96,9 @@ mon960_load (desc, file, hashmark)
printf_filtered ("%s\t: 0x%4x .. 0x%4x ", s->name, s->vma,
s->vma + s->_raw_size);
gdb_flush (gdb_stdout);
- monitor_printf (mon960_cmds.load, s->vma);
- if (mon960_cmds.loadresp)
- monitor_expect (mon960_cmds.loadresp, NULL, 0);
+ monitor_printf (current_monitor->load, s->vma);
+ if (current_monitor->loadresp)
+ monitor_expect (current_monitor->loadresp, NULL, 0);
xmodem_init_xfer (desc);
section_size = bfd_section_size (abfd, s);
for (i = 0; i < section_size; i += XMODEM_DATASIZE)
@@ -136,11 +134,11 @@ mon960_load (desc, file, hashmark)
/* NOTE: "ip" is documented as "ir" in the Mon960 UG. */
/* NOTE: "ir" can't be accessed... but there's an ip and rip. */
static char *mon960_regnames[NUM_REGS] = {
- /* 0 */ "pfp", "sp", "rip", "r3", "r4", "r5", "r6", "r7", \
- /* 8 */ "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15",\
- /* 16 */ "g0", "g1", "g2", "g3", "g4", "g5", "g6", "g7", \
- /* 24 */ "g8", "g9", "g10", "g11", "g12", "g13", "g14", "fp", \
- /* 32 */ "pc", "ac", "tc", "ip", "fp0", "fp1", "fp2", "fp3",\
+ /* 0 */ "pfp", "sp", "rip", "r3", "r4", "r5", "r6", "r7",
+ /* 8 */ "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15",
+ /* 16 */ "g0", "g1", "g2", "g3", "g4", "g5", "g6", "g7",
+ /* 24 */ "g8", "g9", "g10", "g11", "g12", "g13", "g14", "fp",
+ /* 32 */ "pc", "ac", "tc", "ip", "fp0", "fp1", "fp2", "fp3",
};
/* Define the monitor command strings. Since these are passed directly
@@ -245,8 +243,8 @@ _initialize_mon960 ()
mon960_ops.to_remove_breakpoint = memory_remove_breakpoint;
mon960_ops.to_doc =
- "Use an Intel 960 board running the MON960 debug monitor.\n"
- "Specify the serial device it is connected to (e.g. /dev/ttya).";
+ "Use an Intel 960 board running the MON960 debug monitor.\n\
+Specify the serial device it is connected to (e.g. /dev/ttya).";
mon960_ops.to_open = mon960_open;
add_target (&mon960_ops);