summaryrefslogtreecommitdiff
path: root/gdb/m32r-rom.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2004-01-27 23:19:51 +0000
committerAndrew Cagney <cagney@redhat.com>2004-01-27 23:19:51 +0000
commit2579ab59bdfada183f19ff40ea51d77985c19483 (patch)
tree2f039922751903640f562f0088315e107cb30fe6 /gdb/m32r-rom.c
parent7d3c1e56f95f5db8874f3b6f93983b80cdbaac37 (diff)
downloadgdb-2579ab59bdfada183f19ff40ea51d77985c19483.tar.gz
2004-01-27 Andrew Cagney <cagney@redhat.com>
* source.c (ambiguous_line_spec): Delete undefined declaration. * m32r-rom.c (m32r_set_board_address): Delete unused function. (m32r_set_server_address, m32r_set_download_path): Ditto. * remote-fileio.c (remote_fileio_to_fio_int): Ditto.
Diffstat (limited to 'gdb/m32r-rom.c')
-rw-r--r--gdb/m32r-rom.c57
1 files changed, 0 insertions, 57 deletions
diff --git a/gdb/m32r-rom.c b/gdb/m32r-rom.c
index 970a8e64a84..ef8c2716e78 100644
--- a/gdb/m32r-rom.c
+++ b/gdb/m32r-rom.c
@@ -398,63 +398,6 @@ mon2000_open (char *args, int from_tty)
monitor_open (args, &mon2000_cmds, from_tty);
}
-/* Function: set_board_address
- Tell the BootOne monitor what it's ethernet IP address is. */
-
-static void
-m32r_set_board_address (char *args, int from_tty)
-{
- int resp_len;
- char buf[1024];
-
- if (args && *args)
- {
- monitor_printf ("ulip %s\n", args);
- resp_len = monitor_expect_prompt (buf, sizeof (buf));
- /* now parse the result for success */
- }
- else
- error ("Requires argument (IP address for M32R-EVA board)");
-}
-
-/* Function: set_server_address
- Tell the BootOne monitor what gdb's ethernet IP address is. */
-
-static void
-m32r_set_server_address (char *args, int from_tty)
-{
- int resp_len;
- char buf[1024];
-
- if (args && *args)
- {
- monitor_printf ("uhip %s\n", args);
- resp_len = monitor_expect_prompt (buf, sizeof (buf));
- /* now parse the result for success */
- }
- else
- error ("Requires argument (IP address of GDB's host computer)");
-}
-
-/* Function: set_download_path
- Tell the BootOne monitor the default path for downloadable SREC files. */
-
-static void
-m32r_set_download_path (char *args, int from_tty)
-{
- int resp_len;
- char buf[1024];
-
- if (args && *args)
- {
- monitor_printf ("up %s\n", args);
- resp_len = monitor_expect_prompt (buf, sizeof (buf));
- /* now parse the result for success */
- }
- else
- error ("Requires argument (default path for downloadable SREC files)");
-}
-
static void
m32r_upload_command (char *args, int from_tty)
{