1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-03 16:33:19 +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

@ -3320,7 +3320,7 @@ functions will allow you to do exactly this:
.else
; assume absolute or zero page
lda arg
ldx 1+({arg})
ldx 1+(arg)
.endif
.endmacro
</verb></tscreen>
@ -3817,7 +3817,7 @@ When using these special symbols, please take care of the following:
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
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.
<item>