From c84e500001e7cb3d349291d50c51f2b5cf3668db Mon Sep 17 00:00:00 2001 From: Steve Chamberlain Date: Sat, 13 Jan 1996 00:21:55 +0000 Subject: * dsrec.c (load_srec): Remove unused variable. monitor.c (monitor_expect): Don't expect a ^C to echo. * serial.c (serial_open): Add parallel interface. * sh3-rom.c (parallel, parallel_in_use): New. (sh3_load): If parallel_in_use, download though the parallel port. (sh3_open): Open parallel port if specified. (sh3_close): New function. (_inititalize_sh3): Add sh3_close hook and documentation. * monitor.c (monitor_close): Export. * monitor.h (monitor_close): Add prototype. --- gdb/serial.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'gdb/serial.c') diff --git a/gdb/serial.c b/gdb/serial.c index ea886a6a3c9..72bfc507713 100644 --- a/gdb/serial.c +++ b/gdb/serial.c @@ -1,5 +1,5 @@ /* Generic serial interface routines - Copyright 1992, 1993 Free Software Foundation, Inc. + Copyright 1992, 1993, 1996 Free Software Foundation, Inc. This file is part of GDB. @@ -74,6 +74,8 @@ serial_open (name) ops = serial_interface_lookup ("pc"); else if (strchr (name, ':')) ops = serial_interface_lookup ("tcp"); + else if (strncmp (name, "lpt", 3) == 0) + ops = serial_interface_lookup ("parallel"); else ops = serial_interface_lookup ("hardwire"); -- cgit v1.2.1