The assembler options -l and --listing will now take the name of the listing

file as an argument.


git-svn-id: svn://svn.cc65.org/cc65/trunk@4967 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2011-02-06 20:10:19 +00:00
parent 3b9032a7c4
commit a6389e6406
7 changed files with 51 additions and 52 deletions

View File

@@ -95,7 +95,7 @@ Short options:
-g Add debug info to object file
-h Help (this text)
-i Ignore case of symbols
-l Create a listing if assembly was ok
-l name Create a listing file if assembly was ok
-mm model Set the memory model
-o name Name the output file
-s Enable smart mode
@@ -114,7 +114,7 @@ Long options:
--help Help (this text)
--ignore-case Ignore case of symbols
--include-dir dir Set an include directory search path
--listing Create a listing if assembly was ok
--listing name Create a listing file if assembly was ok
--list-bytes n Maximum number of bytes per listing line
--macpack-dir dir Set a macro package directory
--memory-model model Set the memory model
@@ -219,11 +219,10 @@ Here is a description of all the command line options:
<label id="option-l">
<tag><tt>-l, --listing</tt></tag>
<tag><tt>-l name, --listing name</tt></tag>
Generate an assembler listing. The listing file will always have the
name of the main input file with the extension replaced by ".lst". This
may change in future versions.
Generate an assembler listing with the given name. A listing file will
never be generated in case of assembly errors.
<label id="option--list-bytes">
@@ -2393,7 +2392,7 @@ Here's a list of all control commands and a description, what they do:
.elseif bar = 1
...
.else
.fatal "Must define foo or bar!"
.fatal "Must define foo or bar!"
.endif
</verb></tscreen>

View File

@@ -38,7 +38,7 @@ Short options:
-d Debug mode
-g Add debug info
-h Help (this text)
-l Create an assembler listing
-l name Create an assembler listing file
-m name Create a map file
-mm model Set the memory model
-o name Name the output file
@@ -94,7 +94,7 @@ Long options:
--lib file Link this library
--lib-path path Specify a library search path
--list-targets List all available targets
--listing Create an assembler listing
--listing name Create an assembler listing file
--list-bytes n Number of bytes per assembler listing line
--mapfile name Create a map file
--memory-model model Set the memory model