summaryrefslogtreecommitdiff
path: root/gdb/h8500-tdep.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2000-12-02 11:37:15 +0000
committerAndrew Cagney <cagney@redhat.com>2000-12-02 11:37:15 +0000
commit5cb231d6740a15727ca643ec1438bb175c833daf (patch)
tree65563b9d56db4ca4c68bd7f178c2a9054781c54d /gdb/h8500-tdep.c
parentb22c5394005f626023d597818f3d83986b64e874 (diff)
downloadgdb-5cb231d6740a15727ca643ec1438bb175c833daf.tar.gz
* ser-e7kpc.c (e7000pc_setstopbits): New function.
(e7000pc_ops): Add e7000pc_setstopbits. * remote-e7000.c (e7000_detach, e7000_resume, e7000_xfer_inferior_memory, e7000_files_info, e7000_files_info, e7000_insert_breakpoint, e7000_remove_breakpoint, e7000_kill): Update function signature to match target vector. * h8300-tdep.c (h8300_command, h8300h_command, h8300s_command): h8500-tdep.c (small_command, big_command, medium_command, compact_command): Update function signature to match add_cmd.
Diffstat (limited to 'gdb/h8500-tdep.c')
-rw-r--r--gdb/h8500-tdep.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/h8500-tdep.c b/gdb/h8500-tdep.c
index 2cbe1e37e06..0d96b8a3eea 100644
--- a/gdb/h8500-tdep.c
+++ b/gdb/h8500-tdep.c
@@ -414,7 +414,7 @@ h8500_set_pointer_size (int newsize)
}
static void
-big_command (void)
+big_command (char *arg, int from_tty)
{
h8500_set_pointer_size (32);
code_size = 4;
@@ -422,7 +422,7 @@ big_command (void)
}
static void
-medium_command (void)
+medium_command (char *arg, int from_tty)
{
h8500_set_pointer_size (32);
code_size = 4;
@@ -430,7 +430,7 @@ medium_command (void)
}
static void
-compact_command (void)
+compact_command (char *arg, int from_tty)
{
h8500_set_pointer_size (32);
code_size = 2;
@@ -438,7 +438,7 @@ compact_command (void)
}
static void
-small_command (void)
+small_command (char *arg, int from_tty)
{
h8500_set_pointer_size (16);
code_size = 2;