mirror of
https://github.com/cc65/cc65.git
synced 2025-04-06 20:37:16 +00:00
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:
parent
eaeeea0cc0
commit
067706b737
@ -125,12 +125,12 @@ how to use it.
|
||||
|
||||
<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
|
||||
40×40 with 16 colors. At the bottom of the screen, 4 additional text lines
|
||||
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
|
||||
280×192 with 6 colors.
|
||||
|
||||
@ -141,8 +141,8 @@ how to use it.
|
||||
|
||||
<descrip>
|
||||
|
||||
<tag><tt/a2-lc.emd/</tag>
|
||||
Gives access to 12KB RAM (48 pages of 256 bytes each) on the
|
||||
<tag><tt/a2.lc.emd/</tag>
|
||||
Gives access to 12KB RAM (48 pages of 256 bytes each) on the
|
||||
Apple ][ language card. The driver was contributed by
|
||||
Stefan Haubenthal.
|
||||
|
||||
@ -154,7 +154,7 @@ how to use it.
|
||||
|
||||
<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
|
||||
the Apple ][.
|
||||
|
||||
|
@ -908,7 +908,7 @@ if you want to access the "other" symbol <tt/bar/, you would have to write:
|
||||
.endscope
|
||||
</verb></tscreen>
|
||||
|
||||
|
||||
|
||||
<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>
|
||||
|
||||
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:
|
||||
|
||||
<tscreen><verb>
|
||||
.export foo, bar
|
||||
.export foo
|
||||
.export bar: far
|
||||
</verb></tscreen>
|
||||
|
||||
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>
|
||||
|
||||
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:
|
||||
|
||||
<tscreen><verb>
|
||||
.import foo, bar
|
||||
.import foo
|
||||
.import bar: zeropage
|
||||
</verb></tscreen>
|
||||
|
||||
See: <tt><ref id=".IMPORTZP" name=".IMPORTZP"></tt>
|
||||
|
Loading…
x
Reference in New Issue
Block a user