diff options
author | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2001-05-09 17:51:01 +0000 |
---|---|---|
committer | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2001-05-09 17:51:01 +0000 |
commit | bb4a4a9151136f2b86a23fed32a5fdba9e2db699 (patch) | |
tree | 71d581da67d3c47055381a099d07c3f690af1098 /gdb/sh3-rom.c | |
parent | 8ba9c428b76e9903407e3579d5e82c01d43ac437 (diff) | |
download | gdb-bb4a4a9151136f2b86a23fed32a5fdba9e2db699.tar.gz |
2001-05-09 Elena Zannoni <ezannoni@redhat.com>
* sh3-rom.c (_initialize_sh3_rom): Get rid of specific _WINDOWS
conditional for help with connections through parallel ports,
given that the actual code for downloading through a parallel port
is not conditionalized.
* sh-tdep.c: Remove WIN32_WCE conditional. The wince sh target is
unmaintaned, and probably on its way to obsolescence.
Diffstat (limited to 'gdb/sh3-rom.c')
-rw-r--r-- | gdb/sh3-rom.c | 24 |
1 files changed, 7 insertions, 17 deletions
diff --git a/gdb/sh3-rom.c b/gdb/sh3-rom.c index fc3b7b8b97f..c0f26df38a6 100644 --- a/gdb/sh3-rom.c +++ b/gdb/sh3-rom.c @@ -350,16 +350,11 @@ _initialize_sh3_rom (void) sh3_ops.to_longname = "Hitachi SH-3 rom monitor"; sh3_ops.to_doc = -#ifdef _WINDOWS - /* On windows we can talk through the parallel port too. */ - "Debug on a Hitachi eval board running the SH-3 rom monitor.\n" - "Specify the serial device it is connected to (e.g. com2).\n" + /* We can download through the parallel port too. */ + "Debug on a Hitachi eval board running the SH-3E rom monitor.\n" + "Specify the serial device it is connected to.\n" "If you want to use the parallel port to download to it, specify that\n" - "as the second argument. (e.g. lpt1)"; -#else - "Debug on a Hitachi eval board running the SH-3 rom monitor.\n\ -Specify the serial device it is connected to (e.g. /dev/ttya)."; -#endif + "as an additional second argument."; sh3_ops.to_open = sh3_open; sh3_ops.to_close = sh3_close; @@ -374,16 +369,11 @@ Specify the serial device it is connected to (e.g. /dev/ttya)."; sh3e_ops.to_longname = "Hitachi SH-3E rom monitor"; sh3e_ops.to_doc = -#ifdef _WINDOWS - /* On windows we can talk through the parallel port too. */ + /* We can download through the parallel port too. */ "Debug on a Hitachi eval board running the SH-3E rom monitor.\n" - "Specify the serial device it is connected to (e.g. com2).\n" + "Specify the serial device it is connected to.\n" "If you want to use the parallel port to download to it, specify that\n" - "as the second argument. (e.g. lpt1)"; -#else - "Debug on a Hitachi eval board running the SH-3E rom monitor.\n\ -Specify the serial device it is connected to (e.g. /dev/ttya)."; -#endif + "as an additional second argument."; sh3e_ops.to_open = sh3e_open; sh3e_ops.to_close = sh3_close; |