From: borutr Date: Wed, 12 Mar 2008 20:46:08 +0000 (+0000) Subject: * as/doc/asmlnk.doc, as/doc/asxhtm.html: updated command line options X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=827ce4acd59ee83f7a102e5365e5338c6e5c28da;p=fw%2Fsdcc * as/doc/asmlnk.doc, as/doc/asxhtm.html: updated command line options * as/hc80/asmain.c, as/mcs51/asmain.c: added option -c to usage git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@5090 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/ChangeLog b/ChangeLog index ca49bdca..d4862c94 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-03-12 Borut Razem + + * as/doc/asmlnk.doc, as/doc/asxhtm.html: updated command line options + * as/hc80/asmain.c, as/mcs51/asmain.c: added option -c to usage + 2008-03-10 Maarten Brock * src/SDCCast.c (isConformingBody): fixed bug 1505811, thanks Robert Larice diff --git a/as/doc/asmlnk.doc b/as/doc/asmlnk.doc index 9da3e8da..17c30e9a 100644 --- a/as/doc/asmlnk.doc +++ b/as/doc/asmlnk.doc @@ -1813,7 +1813,7 @@ assembler is started, enter the option(s) and file(s) to assem- ble following the 'argv:' prompt: - argv: [-dqxgalosf] file1 [file2 file3 ... file6] + argv: [-dqxjgalcposf] file1 [file2 file3 ... file6] The options are: @@ -1824,6 +1824,7 @@ The listing radix affects the .lst, .rel, and .sym files. + j add line number and debug information to file g undefined symbols made global a all user symbols made global @@ -1838,6 +1839,11 @@ f by ` in the listing file ff by mode in the listing file + asx8051 specific command line option: + -I Add the named directory to the include file + search path. This option may be used more than once. + Directories are searched in the order given. + The file name for the .lst, .rel, and .sym files is the first file name specified in the command line. All output files are ascii text files which may be edited, copied, etc. The output @@ -1853,7 +1859,11 @@ (s) option, the symbol table is placed at the end of the listing file. - + ASXXXX assembles supported by and distributed with SDCC are: + asx8051 (Intel 8051) + as-z80 (Zilog Z80 / Hitachi HD64180) + as-gbz80 (GameBoy Z80-like CPU) + as-hc08 (Motorola 68HC08) THE ASSEMBLER PAGE 1-28 diff --git a/as/doc/asxhtm.html b/as/doc/asxhtm.html index 444824c8..784d57b7 100644 --- a/as/doc/asxhtm.html +++ b/as/doc/asxhtm.html @@ -1925,7 +1925,7 @@ semblers are started with the appropriate option(s) and file(s) to assemble following the assembler name: - as6809 [-dqxgalosff] file1 [file2 file3 ... file6] + as-z80 [-dqxjgaloscpff] file1 [file2 file3 ... file6] The options are: @@ -1936,6 +1936,7 @@ The listing radix affects the .lst, .rel, and .sym files. + j add line number and debug information to file g undefined symbols made global a all user symbols made global @@ -1943,16 +1944,20 @@ o create object output file1.rel s create symbol output file1.sym - p disable listing pagination - w wide listing format for symbol table + c generate sdcdb debug information - z enable case sensitivity for symbols + p disable listing pagination relocatable reference flagging: f by ` in the listing file ff by mode in the listing file + asx8051 specific command line option: + -I Add the named directory to the include file + search path. This option may be used more than once. + Directories are searched in the order given. + The file name for the .lst, .rel, and .sym files is the first file name specified in the command line. All output files are ascii text files which may be edited, copied, etc. The output @@ -1964,6 +1969,11 @@ will use the proper conversion for this file. Linked files may have different radices. + ASXXXX assembles supported by and distributed with SDCC are: + asx8051 (Intel 8051) + as-z80 (Zilog Z80 / Hitachi HD64180) + as-gbz80 (GameBoy Z80-like CPU) + as-hc08 (Motorola 68HC08) THE ASSEMBLER PAGE 1-28 diff --git a/as/hc08/asmain.c b/as/hc08/asmain.c index 3621249a..ae5503f5 100644 --- a/as/hc08/asmain.c +++ b/as/hc08/asmain.c @@ -1227,6 +1227,7 @@ char *usetxt[] = { " l create list output file1[LST]", " o create object output file1[REL]", " s create symbol output file1[SYM]", + " c generate sdcdb debug information", " p disable listing pagination", " f flag relocatable references by ` in listing file", " ff flag relocatable references by mode in listing file", diff --git a/as/mcs51/asmain.c b/as/mcs51/asmain.c index 180dd74a..9c88df19 100644 --- a/as/mcs51/asmain.c +++ b/as/mcs51/asmain.c @@ -1285,6 +1285,7 @@ char *usetxt[] = { " l create list output file1[LST]", " o create object output file1[REL]", " s create symbol output file1[SYM]", + " c generate sdcdb debug information", " p disable listing pagination", " f flag relocatable references by ` in listing file", " ff flag relocatable references by mode in listing file",