diff options
author | Stu Grossman <grossman@cygnus> | 1995-04-17 22:43:56 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1995-04-17 22:43:56 +0000 |
commit | f8f3659f3eb5d715c5e1d9ce10614e83482d986b (patch) | |
tree | b6f6cca380f96c7839c5318dcc6b24ee7ba8fcd8 /gdb/op50-rom.c | |
parent | fe4bce98e0872d234567ccd10d745fbb53d3b61a (diff) | |
download | gdb-f8f3659f3eb5d715c5e1d9ce10614e83482d986b.zip gdb-f8f3659f3eb5d715c5e1d9ce10614e83482d986b.tar.gz gdb-f8f3659f3eb5d715c5e1d9ce10614e83482d986b.tar.bz2 |
* cpu32bug-rom.c monitor.h op50-rom.c remote-est.c rom68k-rom.c
w89k-rom.c: Remove loadtypes, loadprotos and baudrates.
* op50-rom.c: Fix copyrights and add load routine to op50n_cmds.
* rom68k-rom.c (_initialize_rom68k): Don't set baud rate.
* w89k-rom.c: Fix copyrights.
Diffstat (limited to 'gdb/op50-rom.c')
-rw-r--r-- | gdb/op50-rom.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/gdb/op50-rom.c b/gdb/op50-rom.c index 0cfb4b28..d5a3eb1 100644 --- a/gdb/op50-rom.c +++ b/gdb/op50-rom.c @@ -1,6 +1,6 @@ /* Remote target glue for the Oki op50n based eval board. - Copyright 1988, 1991, 1992, 1993, 1994 Free Software Foundation, Inc. + Copyright 1995 Free Software Foundation, Inc. This file is part of GDB. @@ -53,9 +53,6 @@ static char *op50n_regnames[NUM_REGS] = static struct target_ops op50n_ops; -static char *op50n_loadtypes[] = {"none", "srec", "default", NULL}; -static char *op50n_loadprotos[] = {"none", NULL}; - static char *op50n_inits[] = {"\003.\n", NULL}; static struct monitor_ops op50n_cmds = @@ -102,15 +99,13 @@ static struct monitor_ops op50n_cmds = NULL, /* dump_registers */ NULL, /* register_pattern */ NULL, /* supply_register */ + NULL, /* load routine */ "r 0\n", /* download command */ NULL, /* load response */ "#", /* monitor command prompt */ NULL, /* end-of-command delimitor */ NULL, /* optional command terminator */ &op50n_ops, /* target operations */ - op50n_loadtypes, /* loadtypes */ - op50n_loadprotos, /* loadprotos */ - "2400,4800,9600,19200,exta,38400,extb", /* supported baud rates */ SERIAL_1_STOPBITS, /* number of stop bits */ op50n_regnames, /* register names */ MONITOR_OPS_MAGIC /* magic */ |