1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-18 11:29:45 +00:00

Fixed a typo, fixed ldax macro.

git-svn-id: svn://svn.cc65.org/cc65/trunk@3203 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2004-10-02 19:54:20 +00:00
parent e43054905b
commit bdc99d57e2

View File

@ -1776,7 +1776,7 @@ Here's a list of all control commands and a description, what they do:
See the <tt><ref id=".CONSTRUCTOR" name=".CONSTRUCTOR"></tt>, <tt><ref See the <tt><ref id=".CONSTRUCTOR" name=".CONSTRUCTOR"></tt>, <tt><ref
id=".DESTRUCTOR" name=".DESTRUCTOR"></tt> and <tt><ref id=".INTERRUPTOR" id=".DESTRUCTOR" name=".DESTRUCTOR"></tt> and <tt><ref id=".INTERRUPTOR"
name=".INTERRUPTOR"></tt>commands and the separate section <ref id="condes" name=".INTERRUPTOR"></tt>commands and the separate section <ref id="condes"
name="Module constructors/destructors"> explaining the feature in more name="Module constructors/destructors"> explaining the feature in more
detail. detail.
@ -2537,7 +2537,7 @@ Here's a list of all control commands and a description, what they do:
<sect1><tt>.INTERRUPTOR</tt><label id=".INTERRUPTOR"><p> <sect1><tt>.INTERRUPTOR</tt><label id=".INTERRUPTOR"><p>
Export a symbol and mark it as an interruptor. This may be used together Export a symbol and mark it as an interruptor. This may be used together
with the linker to build a table of interruptor subroutines that are called with the linker to build a table of interruptor subroutines that are called
in an interrupt. in an interrupt.
Note: The linker has a feature to build a table of marked routines, but it Note: The linker has a feature to build a table of marked routines, but it
@ -2559,7 +2559,7 @@ Here's a list of all control commands and a description, what they do:
.interruptor Handler, 16 .interruptor Handler, 16
</verb></tscreen> </verb></tscreen>
See the <tt><ref id=".CONDES" name=".CONDES"></tt> command and the separate See the <tt><ref id=".CONDES" name=".CONDES"></tt> command and the separate
section <ref id="condes" name="Module constructors/destructors"> explaining section <ref id="condes" name="Module constructors/destructors"> explaining
the feature in more detail. the feature in more detail.
@ -3320,7 +3320,7 @@ functions will allow you to do exactly this:
.else .else
; assume absolute or zero page ; assume absolute or zero page
lda arg lda arg
ldx 1+({arg}) ldx 1+(arg)
.endif .endif
.endmacro .endmacro
</verb></tscreen> </verb></tscreen>
@ -3813,11 +3813,11 @@ When using these special symbols, please take care of the following:
<itemize> <itemize>
<item> <item>
The linker will only generate function tables, it will not generate code to The linker will only generate function tables, it will not generate code to
call these functions. If you're using the feature in some other than the call these functions. If you're using the feature in some other than the
existing C environments, you have to write code to call all functions in a existing C environments, you have to write code to call all functions in a
linker generated table yourself. See the <tt>/condes/ and <tt/callirq/ modules linker generated table yourself. See the <tt/condes/ and <tt/callirq/ modules
in the C runtime for an example on how to do this. in the C runtime for an example on how to do this.
<item> <item>