mirror of
https://github.com/cc65/cc65.git
synced 2025-01-12 02:30:44 +00:00
Fixed wrong info for PAGELENGTH
git-svn-id: svn://svn.cc65.org/cc65/trunk@2364 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
d790ae1b42
commit
2af86784a9
@ -253,7 +253,8 @@ following attributes are recognized:
|
|||||||
|
|
||||||
This attribute may be used instead of the <tt><ref id="option--pagelength"
|
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
|
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>
|
<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
|
The following is a short example for an info file that contains most of the
|
||||||
directives explained above:
|
directives explained above:
|
||||||
|
|
||||||
<tscreen><verb>
|
<tscreen><verb>
|
||||||
GLOBAL {
|
GLOBAL {
|
||||||
OUTPUTNAME "kernal.s";
|
OUTPUTNAME "kernal.s";
|
||||||
INPUTNAME "kernal.bin";
|
INPUTNAME "kernal.bin";
|
||||||
STARTADDR $E000;
|
STARTADDR $E000;
|
||||||
PAGELENGTH -1; # No paging
|
PAGELENGTH 0; # No paging
|
||||||
CPU "6502";
|
CPU "6502";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user