]> git.sur5r.net Git - cc65/commitdiff
Added small comments about address sizes
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 23 Dec 2003 20:20:45 +0000 (20:20 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 23 Dec 2003 20:20:45 +0000 (20:20 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@2834 b7a2c559-68d2-44c3-8de9-860c34a00d81

doc/apple2.sgml
doc/ca65.sgml

index 908503f66a40743984a2584569ae43795cdf833c..35b275eb0d39a848725aa9842cac20ee615a3bed 100644 (file)
@@ -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&times;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&times;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&nbsp;&rsqb;&lsqb; 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&nbsp;&rsqb;&lsqb;.
 
index 3d7324ed112d68f26a929e1a68d943d7a3f29755..debbc4cd01800261d0e8d72f824f115e0a201274 100644 (file)
@@ -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>