Small fixes by Stefan Haubenthal
git-svn-id: svn://svn.cc65.org/cc65/trunk@3521 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
71126c8200
commit
7579aba638
3 changed files with 6 additions and 5 deletions
|
@ -61,7 +61,7 @@ program generated by the linker for the Apple ][ target.
|
||||||
<sect>Memory layout<p>
|
<sect>Memory layout<p>
|
||||||
|
|
||||||
In the standard setup, cc65 generated programs use the memory from
|
In the standard setup, cc65 generated programs use the memory from
|
||||||
$800 to $9600, so 35.5K of memory is available. ROM calls are
|
$800 to $95FF, so 35.5K of memory are available. ROM calls are
|
||||||
possible without further precautions.
|
possible without further precautions.
|
||||||
|
|
||||||
Special locations:
|
Special locations:
|
||||||
|
@ -91,6 +91,7 @@ the <htmlurl url="funcref.html" name="function reference"> for declaration and
|
||||||
usage.
|
usage.
|
||||||
|
|
||||||
<itemize>
|
<itemize>
|
||||||
|
<item>_dos_type
|
||||||
<item>get_ostype
|
<item>get_ostype
|
||||||
</itemize>
|
</itemize>
|
||||||
|
|
||||||
|
@ -210,8 +211,8 @@ following functions (and a few others):
|
||||||
|
|
||||||
<sect1>Passing arguments to the program<p>
|
<sect1>Passing arguments to the program<p>
|
||||||
|
|
||||||
Command line arguments can be passed to <tt/main()/. Since this is not
|
Command line arguments can be passed to <tt/main()/ after BLOAD. Since this is not
|
||||||
supported by BASIC, the following syntax was choosen:
|
supported by BASIC, the following syntax was chosen:
|
||||||
|
|
||||||
<tscreen><verb>
|
<tscreen><verb>
|
||||||
]CALL2048:REM ARG1 " ARG2 IS QUOTED" ARG3 "" ARG5
|
]CALL2048:REM ARG1 " ARG2 IS QUOTED" ARG3 "" ARG5
|
||||||
|
|
|
@ -1418,7 +1418,7 @@ either a string or an expression.
|
||||||
Please note that a symbol or scope must exist, before it is used together with
|
Please note that a symbol or scope must exist, before it is used together with
|
||||||
<tt/.SIZEOF/ (this may get relaxed later, but will always be true for scopes).
|
<tt/.SIZEOF/ (this may get relaxed later, but will always be true for scopes).
|
||||||
A scope has preference over a symbol with the same name, so if the last part
|
A scope has preference over a symbol with the same name, so if the last part
|
||||||
of a name represents both, a scope and a symbol, the scope is choosen over the
|
of a name represents both, a scope and a symbol, the scope is chosen over the
|
||||||
symbol.
|
symbol.
|
||||||
|
|
||||||
After the following code:
|
After the following code:
|
||||||
|
|
|
@ -144,7 +144,7 @@ There are a few remaining options that control the behaviour of cl65:
|
||||||
The default for this option is different from the compiler and linker in the
|
The default for this option is different from the compiler and linker in the
|
||||||
case that the option is missing: While the other tools (compiler, assembler
|
case that the option is missing: While the other tools (compiler, assembler
|
||||||
and linker) will use the "none" system settings by default, cl65 will use
|
and linker) will use the "none" system settings by default, cl65 will use
|
||||||
the C64 as a target system by default. This was choosen since most people
|
the C64 as a target system by default. This was chosen since most people
|
||||||
seem to use cc65 to develop for the C64.
|
seem to use cc65 to develop for the C64.
|
||||||
|
|
||||||
</descrip>
|
</descrip>
|
||||||
|
|
Loading…
Add table
Reference in a new issue