]> git.sur5r.net Git - cc65/commitdiff
Fixed wrong info for PAGELENGTH
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 18 Aug 2003 19:58:30 +0000 (19:58 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 18 Aug 2003 19:58:30 +0000 (19:58 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@2364 b7a2c559-68d2-44c3-8de9-860c34a00d81

doc/da65.sgml

index cadc92f0e717a1cb51d8b7758158e0e7973c5812..1a02170921a76c6d5f7f1520d91a13acfd0513dc 100644 (file)
@@ -253,7 +253,8 @@ following attributes are recognized:
 
   This attribute may be used instead of the <tt><ref id="option--pagelength"
   name="--pagelength"></tt> option on the command line. It takes a numerical
-  parameter.
+  parameter. Using zero as page length (which is the default) means that no 
+  pages are generated.
 
 
   <tag><tt>STARTADDR</tt></tag>
@@ -362,13 +363,13 @@ code. The following attributes are recognized:
 
 The following is a short example for an info file that contains most of the
 directives explained above:
-                                                             
+
 <tscreen><verb>
         GLOBAL {
                 OUTPUTNAME "kernal.s";
                 INPUTNAME  "kernal.bin";
                 STARTADDR  $E000;
-                PAGELENGTH -1;          # No paging
+                PAGELENGTH 0;          # No paging
                 CPU        "6502";
         };