Reordered the options to match the actual usage output
git-svn-id: svn://svn.cc65.org/cc65/trunk@1003 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -3,7 +3,7 @@
|
|||||||
<article>
|
<article>
|
||||||
<title>ca65 Users Guide
|
<title>ca65 Users Guide
|
||||||
<author>Ullrich von Bassewitz, <htmlurl url="mailto:uz@cc65.org" name="uz@cc65.org">
|
<author>Ullrich von Bassewitz, <htmlurl url="mailto:uz@cc65.org" name="uz@cc65.org">
|
||||||
<date>19.07.2000, 29.11.2000
|
<date>19.07.2000, 29.11.2000, 02.10.2001
|
||||||
|
|
||||||
<abstract>
|
<abstract>
|
||||||
ca65 is a powerful macro assembler for the 6502, 65C02 and 65816 CPUs. It is
|
ca65 is a powerful macro assembler for the 6502, 65C02 and 65816 CPUs. It is
|
||||||
@@ -87,33 +87,33 @@ The assembler accepts the following options:
|
|||||||
---------------------------------------------------------------------------
|
---------------------------------------------------------------------------
|
||||||
Usage: ca65 [options] file
|
Usage: ca65 [options] file
|
||||||
Short options:
|
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
|
|
||||||
-o name Name the output file
|
|
||||||
-s Enable smart mode
|
|
||||||
-t sys Set the target system
|
|
||||||
-v Increase verbosity
|
|
||||||
-D name[=value] Define a symbol
|
-D name[=value] Define a symbol
|
||||||
-I dir Set an include directory search path
|
-I dir Set an include directory search path
|
||||||
-U Mark unresolved symbols as import
|
-U Mark unresolved symbols as import
|
||||||
-V Print the assembler version
|
-V Print the assembler version
|
||||||
-W n Set warning level n
|
-W n Set warning level n
|
||||||
|
-g Add debug info to object file
|
||||||
|
-h Help (this text)
|
||||||
|
-i Ignore case of symbols
|
||||||
|
-l Create a listing if assembly was ok
|
||||||
|
-o name Name the output file
|
||||||
|
-s Enable smart mode
|
||||||
|
-t sys Set the target system
|
||||||
|
-v Increase verbosity
|
||||||
|
|
||||||
Long options:
|
Long options:
|
||||||
--auto-import Mark unresolved symbols as import
|
--auto-import Mark unresolved symbols as import
|
||||||
--cpu type Set cpu type
|
--cpu type Set cpu type
|
||||||
--debug-info Add debug info to object file
|
--debug-info Add debug info to object file
|
||||||
--feature name Set an emulation feature
|
--feature name Set an emulation feature
|
||||||
--help Help (this text)
|
--help Help (this text)
|
||||||
--ignore-case Ignore case of symbols
|
--ignore-case Ignore case of symbols
|
||||||
--include-dir dir Set an include directory search path
|
--include-dir dir Set an include directory search path
|
||||||
--listing Create a listing if assembly was ok
|
--listing Create a listing if assembly was ok
|
||||||
--pagelength n Set the page length for the listing
|
--pagelength n Set the page length for the listing
|
||||||
--smart Enable smart mode
|
--smart Enable smart mode
|
||||||
--target sys Set the target system
|
--target sys Set the target system
|
||||||
--verbose Increase verbosity
|
--verbose Increase verbosity
|
||||||
--version Print the assembler version
|
--version Print the assembler version
|
||||||
---------------------------------------------------------------------------
|
---------------------------------------------------------------------------
|
||||||
</verb></tscreen>
|
</verb></tscreen>
|
||||||
@@ -1478,7 +1478,7 @@ Here's a list of all control commands and a description, what they do:
|
|||||||
|
|
||||||
; Include file starting at offset 256
|
; Include file starting at offset 256
|
||||||
.incbin "music.dat", $100
|
.incbin "music.dat", $100
|
||||||
|
|
||||||
; Read 100 bytes starting at offset 200
|
; Read 100 bytes starting at offset 200
|
||||||
.incbin "graphics.dat", 200, 100
|
.incbin "graphics.dat", 200, 100
|
||||||
</verb></tscreen>
|
</verb></tscreen>
|
||||||
|
|||||||
@@ -54,24 +54,6 @@ The compiler may be called as follows:
|
|||||||
---------------------------------------------------------------------------
|
---------------------------------------------------------------------------
|
||||||
Usage: cc65 [options] file
|
Usage: cc65 [options] file
|
||||||
Short options:
|
Short options:
|
||||||
-A Strict ANSI mode
|
|
||||||
-Cl Make local variables static
|
|
||||||
-Dsym[=defn] Define a symbol
|
|
||||||
-I dir Set an include directory search path
|
|
||||||
-O Optimize code
|
|
||||||
-Oi Optimize code, inline more code
|
|
||||||
-Or Enable register variables
|
|
||||||
-Os Inline some known functions
|
|
||||||
-T Include source as comment
|
|
||||||
-V Print the compiler version number
|
|
||||||
-W Suppress warnings
|
|
||||||
-d Debug mode
|
|
||||||
-g Add debug info to object file
|
|
||||||
-h Help (this text)
|
|
||||||
-j Default characters are signed
|
|
||||||
-o name Name the output file
|
|
||||||
-t sys Set the target system
|
|
||||||
-v Increase verbosity
|
|
||||||
|
|
||||||
Long options:
|
Long options:
|
||||||
--add-source Include source as comment
|
--add-source Include source as comment
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<article>
|
<article>
|
||||||
<title>cl65 Users Guide
|
<title>cl65 Users Guide
|
||||||
<author>Ullrich von Bassewitz, <htmlurl url="mailto:uz@cc65.org" name="uz@cc65.org">
|
<author>Ullrich von Bassewitz, <htmlurl url="mailto:uz@cc65.org" name="uz@cc65.org">
|
||||||
<date>01.08.2000, 27.11.2000
|
<date>01.08.2000, 27.11.2000, 02.10.2001
|
||||||
|
|
||||||
<abstract>
|
<abstract>
|
||||||
cl65 is the compile & link utility for cc65, the 6502 C compiler. It was
|
cl65 is the compile & link utility for cc65, the 6502 C compiler. It was
|
||||||
@@ -34,6 +34,16 @@ assembler) and other things.
|
|||||||
---------------------------------------------------------------------------
|
---------------------------------------------------------------------------
|
||||||
Usage: cl65 [options] file
|
Usage: cl65 [options] file
|
||||||
Short options:
|
Short options:
|
||||||
|
-c Compiler and assemble but don't link
|
||||||
|
-d Debug mode
|
||||||
|
-g Add debug info
|
||||||
|
-h Help (this text)
|
||||||
|
-l Create an assembler listing
|
||||||
|
-m name Create a map file
|
||||||
|
-o name Name the output file
|
||||||
|
-t sys Set the target system
|
||||||
|
-v Verbose mode
|
||||||
|
-vm Verbose map file
|
||||||
-A Strict ANSI mode
|
-A Strict ANSI mode
|
||||||
-C name Use linker config file
|
-C name Use linker config file
|
||||||
-Cl Make local variables static
|
-Cl Make local variables static
|
||||||
@@ -48,16 +58,6 @@ Short options:
|
|||||||
-T Include source as comment
|
-T Include source as comment
|
||||||
-V Print the version number
|
-V Print the version number
|
||||||
-W Suppress warnings
|
-W Suppress warnings
|
||||||
-c Compiler and assemble but don't link
|
|
||||||
-d Debug mode
|
|
||||||
-g Add debug info
|
|
||||||
-h Help (this text)
|
|
||||||
-l Create an assembler listing
|
|
||||||
-m name Create a map file
|
|
||||||
-o name Name the output file
|
|
||||||
-t sys Set the target system
|
|
||||||
-v Verbose mode
|
|
||||||
-vm Verbose map file
|
|
||||||
|
|
||||||
Long options:
|
Long options:
|
||||||
--add-source Include source as comment
|
--add-source Include source as comment
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<article>
|
<article>
|
||||||
<title>ld65 Users Guide
|
<title>ld65 Users Guide
|
||||||
<author>Ullrich von Bassewitz, <htmlurl url="mailto:uz@cc65.org" name="uz@cc65.org">
|
<author>Ullrich von Bassewitz, <htmlurl url="mailto:uz@cc65.org" name="uz@cc65.org">
|
||||||
<date>02.12.2000
|
<date>02.12.2000, 02.10.2001
|
||||||
|
|
||||||
<abstract>
|
<abstract>
|
||||||
The ld65 linker combines object files into an executable file. ld65 is highly
|
The ld65 linker combines object files into an executable file. ld65 is highly
|
||||||
@@ -55,21 +55,22 @@ The linker is called as follows:
|
|||||||
---------------------------------------------------------------------------
|
---------------------------------------------------------------------------
|
||||||
Usage: ld65 [options] module ...
|
Usage: ld65 [options] module ...
|
||||||
Short options:
|
Short options:
|
||||||
|
-C name Use linker config file
|
||||||
|
-Ln name Create a VICE label file
|
||||||
|
-Lp Mark write protected segments as such (VICE)
|
||||||
|
-S addr Set the default start address
|
||||||
|
-V Print the linker version
|
||||||
-h Help (this text)
|
-h Help (this text)
|
||||||
-m name Create a map file
|
-m name Create a map file
|
||||||
-o name Name the default output file
|
-o name Name the default output file
|
||||||
-t sys Set the target system
|
-t sys Set the target system
|
||||||
-v Verbose mode
|
-v Verbose mode
|
||||||
-vm Verbose map file
|
-vm Verbose map file
|
||||||
-C name Use linker config file
|
|
||||||
-Ln name Create a VICE label file
|
|
||||||
-Lp Mark write protected segments as such (VICE)
|
|
||||||
-S addr Set the default start address
|
|
||||||
-V Print the linker version
|
|
||||||
|
|
||||||
Long options:
|
Long options:
|
||||||
--help Help (this text)
|
--help Help (this text)
|
||||||
--mapfile name Create a map file
|
--mapfile name Create a map file
|
||||||
|
--start-addr addr Set the default start address
|
||||||
--target sys Set the target system
|
--target sys Set the target system
|
||||||
--version Print the linker version
|
--version Print the linker version
|
||||||
---------------------------------------------------------------------------
|
---------------------------------------------------------------------------
|
||||||
|
|||||||
Reference in New Issue
Block a user