<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.
<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.
<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 ][.
.endscope
</verb></tscreen>
-
+
<sect>Address sizes<label id="address-sizes"><p>
<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>
<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>