* as/doc/asmlnk.doc, as/doc/asxhtm.html: updated command line options
authorborutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Wed, 12 Mar 2008 20:46:08 +0000 (20:46 +0000)
committerborutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Wed, 12 Mar 2008 20:46:08 +0000 (20:46 +0000)
* 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

ChangeLog
as/doc/asmlnk.doc
as/doc/asxhtm.html
as/hc08/asmain.c
as/mcs51/asmain.c

index ca49bdca71abab71cf96e5a0d400cd764a0355c9..d4862c9423254d13660b261161256cb136be08d0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-03-12 Borut Razem <borut.razem AT siol.net>
+
+       * 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 <sourceforge.brock AT dse.nl>
 
        * src/SDCCast.c (isConformingBody): fixed bug 1505811, thanks Robert Larice
index 9da3e8dae9ad57bb8acfd222917a44f30d95b73d..17c30e9afb6720404dd702b9b8df9376658f0e24 100644 (file)
         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:  
 
                         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
         
                 f       by  `   in the listing file
                 ff      by mode in the listing file
 
+        asx8051 specific command line option:
+                -I<dir>  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
         (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)
 \f
 
         THE ASSEMBLER                                          PAGE 1-28
index 444824c854e262cc219de522c00a3933e8adfa97..784d57b750bed75b556cb3ce35571664672756d6 100644 (file)
         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:
 
                         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
 
                 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<dir>  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
         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)
 \f
 
         THE ASSEMBLER                                          PAGE 1-28
index 3621249aed8f6847d91986e54c5885ade334f82e..ae5503f5bd7ad8c00f013eeb23da259ba8b5d997 100644 (file)
@@ -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",
index 180dd74a7912c2905a9a5a6e28937e1ee22eaa93..9c88df19e08dff12a747b681849f35158fd1e46a 100644 (file)
@@ -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",