Added small comments about address sizes
git-svn-id: svn://svn.cc65.org/cc65/trunk@2834 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -125,12 +125,12 @@ how to use it.
|
|||||||
|
|
||||||
<descrip>
|
<descrip>
|
||||||
|
|
||||||
<tag><tt/a2-lo.tgi/</tag>
|
<tag><tt/a2.lo.tgi/</tag>
|
||||||
This driver was written by Stefan Haubenthal. It features a resolution of
|
This driver was written by Stefan Haubenthal. It features a resolution of
|
||||||
40×40 with 16 colors. At the bottom of the screen, 4 additional text lines
|
40×40 with 16 colors. At the bottom of the screen, 4 additional text lines
|
||||||
are available.
|
are available.
|
||||||
|
|
||||||
<tag><tt/a2-hi.tgi/</tag>
|
<tag><tt/a2.hi.tgi/</tag>
|
||||||
This driver was written by Stefan Haubenthal. It features a resolution of
|
This driver was written by Stefan Haubenthal. It features a resolution of
|
||||||
280×192 with 6 colors.
|
280×192 with 6 colors.
|
||||||
|
|
||||||
@@ -141,8 +141,8 @@ how to use it.
|
|||||||
|
|
||||||
<descrip>
|
<descrip>
|
||||||
|
|
||||||
<tag><tt/a2-lc.emd/</tag>
|
<tag><tt/a2.lc.emd/</tag>
|
||||||
Gives access to 12KB RAM (48 pages of 256 bytes each) on the
|
Gives access to 12KB RAM (48 pages of 256 bytes each) on the
|
||||||
Apple ][ language card. The driver was contributed by
|
Apple ][ language card. The driver was contributed by
|
||||||
Stefan Haubenthal.
|
Stefan Haubenthal.
|
||||||
|
|
||||||
@@ -154,7 +154,7 @@ how to use it.
|
|||||||
|
|
||||||
<descrip>
|
<descrip>
|
||||||
|
|
||||||
<tag><tt/a2-stdjoy.joy/</tag>
|
<tag><tt/a2.stdjoy.joy/</tag>
|
||||||
Supports up to two standard analog joysticks connected to the game port of
|
Supports up to two standard analog joysticks connected to the game port of
|
||||||
the Apple ][.
|
the Apple ][.
|
||||||
|
|
||||||
|
|||||||
@@ -908,7 +908,7 @@ if you want to access the "other" symbol <tt/bar/, you would have to write:
|
|||||||
.endscope
|
.endscope
|
||||||
</verb></tscreen>
|
</verb></tscreen>
|
||||||
|
|
||||||
|
|
||||||
<sect>Address sizes<label id="address-sizes"><p>
|
<sect>Address sizes<label id="address-sizes"><p>
|
||||||
|
|
||||||
|
|
||||||
@@ -1962,12 +1962,17 @@ Here's a list of all control commands and a description, what they do:
|
|||||||
<sect1><tt>.EXPORT</tt><label id=".EXPORT"><p>
|
<sect1><tt>.EXPORT</tt><label id=".EXPORT"><p>
|
||||||
|
|
||||||
Make symbols accessible from other modules. Must be followed by a comma
|
Make symbols accessible from other modules. Must be followed by a comma
|
||||||
separated list of symbols to export.
|
separated list of symbols to export, with each one optionally followed by
|
||||||
|
an address specification. The default is to export the symbol with the
|
||||||
|
address size it actually has. The assembler will issue a warning, if the
|
||||||
|
symbol is exported with an address size smaller than the actual address
|
||||||
|
size.
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
||||||
<tscreen><verb>
|
<tscreen><verb>
|
||||||
.export foo, bar
|
.export foo
|
||||||
|
.export bar: far
|
||||||
</verb></tscreen>
|
</verb></tscreen>
|
||||||
|
|
||||||
See: <tt><ref id=".EXPORTZP" name=".EXPORTZP"></tt>
|
See: <tt><ref id=".EXPORTZP" name=".EXPORTZP"></tt>
|
||||||
@@ -2342,12 +2347,14 @@ Here's a list of all control commands and a description, what they do:
|
|||||||
<sect1><tt>.IMPORT</tt><label id=".IMPORT"><p>
|
<sect1><tt>.IMPORT</tt><label id=".IMPORT"><p>
|
||||||
|
|
||||||
Import a symbol from another module. The command is followed by a comma
|
Import a symbol from another module. The command is followed by a comma
|
||||||
separated list of symbols to import.
|
separated list of symbols to import, with each one optionally followed by
|
||||||
|
an address specification.
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
||||||
<tscreen><verb>
|
<tscreen><verb>
|
||||||
.import foo, bar
|
.import foo
|
||||||
|
.import bar: zeropage
|
||||||
</verb></tscreen>
|
</verb></tscreen>
|
||||||
|
|
||||||
See: <tt><ref id=".IMPORTZP" name=".IMPORTZP"></tt>
|
See: <tt><ref id=".IMPORTZP" name=".IMPORTZP"></tt>
|
||||||
|
|||||||
Reference in New Issue
Block a user