diff options
author | Rob Savoye <rob@cygnus> | 1994-11-15 08:13:05 +0000 |
---|---|---|
committer | Rob Savoye <rob@cygnus> | 1994-11-15 08:13:05 +0000 |
commit | b3b8d9bfa7698d61d2831bfbe9fa41b487e03a45 (patch) | |
tree | 318ee47b20f8aa8546da0f39468807f6016b25d8 /gdb/rom68k-rom.c | |
parent | f08a8281d396236152395e6b9ebde017d4a024a0 (diff) | |
download | fsf-binutils-gdb-b3b8d9bfa7698d61d2831bfbe9fa41b487e03a45.zip fsf-binutils-gdb-b3b8d9bfa7698d61d2831bfbe9fa41b487e03a45.tar.gz fsf-binutils-gdb-b3b8d9bfa7698d61d2831bfbe9fa41b487e03a45.tar.bz2 |
* op50-rom.c, w89k-rom.c, monitor.c: Modify to use two variables
to set remote load type and protocol.
* rom68k-rom.c: Add to_stop in target_ops.
Diffstat (limited to 'gdb/rom68k-rom.c')
-rw-r--r-- | gdb/rom68k-rom.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gdb/rom68k-rom.c b/gdb/rom68k-rom.c index 5b87fed..57398fd 100644 --- a/gdb/rom68k-rom.c +++ b/gdb/rom68k-rom.c @@ -89,6 +89,7 @@ Specify the serial device it is connected to (e.g. /dev/ttya).", monitor_mourn_inferior, 0, /* can_run */ 0, /* notice_signals */ + 0, /* to_stop */ process_stratum, 0, /* next */ 1, @@ -98,7 +99,7 @@ Specify the serial device it is connected to (e.g. /dev/ttya).", 1, /* all mem, mem, stack, regs, exec */ 0, 0, /* Section pointers */ - OPS_MAGIC, /* Always the last thing */ + OPS_MAGIC /* Always the last thing */ }; struct monitor_ops rom68k_cmds = { @@ -135,7 +136,8 @@ struct monitor_ops rom68k_cmds = { "=", /* end-of-command delimitor */ ".\n", /* optional command terminator */ &rom68k_ops, /* target operations */ - "srec,xmodem-ascii,xmodem-srec,default",/* load types */ + "none,srec,default", /* load types */ + "none", /* load protocols */ rom68k_regnames /* registers names */ }; @@ -158,7 +160,3 @@ _initialize_rom68k () /* this is the default, since it's the only baud rate supported by the hardware */ baud_rate = 9600; } - - - - |