diff options
author | Ken Raeburn <raeburn@cygnus> | 1992-10-08 02:09:28 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1992-10-08 02:09:28 +0000 |
commit | 6a1f93f6a28653ea37b3cf02b47a9ef7e67e2fdc (patch) | |
tree | fb9d2a1b96da363218a0cd51dbad56eb901c9198 /gdb/tm-nindy960.h | |
parent | 6881ebf87da2a2bf466f4bc2a05cd05daecd6375 (diff) | |
download | binutils-6a1f93f6a28653ea37b3cf02b47a9ef7e67e2fdc.zip binutils-6a1f93f6a28653ea37b3cf02b47a9ef7e67e2fdc.tar.gz binutils-6a1f93f6a28653ea37b3cf02b47a9ef7e67e2fdc.tar.bz2 |
* Makefile.in (nindy.o): Define "STRIP" as pathname of strip program.
* nindy-share/nindy.c (coffstrip): Use that pathname, instead of searching for
a "bfd_strip" program. Also, fixed up arguments passed to that program.
* tm-nindy960.h (ADDITIONAL_OPTIONS): Use "-ser" rather than "-r", which is now
used for something else. Rewrite description of associated parameters to match
how gdb does it now.
(ADDITIONAL_OPTION_HELP): Fix message accordingly.
* m68k-pinsn.c (print_insn_arg): Handle new "`" operand type.
Diffstat (limited to 'gdb/tm-nindy960.h')
-rw-r--r-- | gdb/tm-nindy960.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/tm-nindy960.h b/gdb/tm-nindy960.h index 520eb6b..7237278 100644 --- a/gdb/tm-nindy960.h +++ b/gdb/tm-nindy960.h @@ -37,12 +37,12 @@ extern int nindy_initial_brk; /* Send a BREAK to reset board first */ extern char *nindy_ttyname; /* Name of serial port to talk to nindy */ #define ADDITIONAL_OPTIONS \ - {"O", 0, &nindy_old_protocol, 1}, \ - {"brk", 0, &nindy_initial_brk, 1}, \ - {"r", 1, 0, 1004}, /* 1004 is magic cookie for ADDL_CASES */ + {"O", no_argument, &nindy_old_protocol, 1}, \ + {"brk", no_argument, &nindy_initial_brk, 1}, \ + {"ser", required_argument, 0, 1004}, /* 1004 is magic cookie for ADDL_CASES */ #define ADDITIONAL_OPTION_CASES \ - case 1004: /* -r option: remote nindy auto-start */ \ + case 1004: /* -ser option: remote nindy auto-start */ \ nindy_ttyname = optarg; \ break; @@ -50,7 +50,7 @@ extern char *nindy_ttyname; /* Name of serial port to talk to nindy */ "\ -O Use old protocol to talk to a Nindy target\n\ -brk Send a break to a Nindy target to reset it.\n\ - -r SERIAL Open remote Nindy session to SERIAL port.\n\ + -ser SERIAL Open remote Nindy session to SERIAL port.\n\ " /* If specified on the command line, open tty for talking to nindy, |