diff options
author | Andrew Cagney <cagney@redhat.com> | 2000-12-02 11:37:15 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2000-12-02 11:37:15 +0000 |
commit | 55d801603665d5b9b410578cd64f29469dc86e7e (patch) | |
tree | 13cedd36ecb99ac47653698cdd19567141e1bc8d /gdb/h8500-tdep.c | |
parent | c6c98b3833d01c45200708006011e5cecd461fac (diff) | |
download | gdb-55d801603665d5b9b410578cd64f29469dc86e7e.zip gdb-55d801603665d5b9b410578cd64f29469dc86e7e.tar.gz gdb-55d801603665d5b9b410578cd64f29469dc86e7e.tar.bz2 |
* 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.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/h8500-tdep.c b/gdb/h8500-tdep.c index 2cbe1e3..0d96b8a 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; |