1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-21 11:29:41 +00:00

Corrected a few minor issues

git-svn-id: svn://svn.cc65.org/cc65/trunk@174 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2000-07-19 18:18:52 +00:00
parent 359b3ab4a0
commit f97a1603ec

View File

@ -517,7 +517,7 @@ use symbols and labels, giving a lot of flexibility.
or plus characters as a label designator. Using the '-' characters
will create a back reference (use the n'th label backwards), using
'+' will create a forward reference (use the n'th label in forward
direction. An example will help to understand this:
direction). An example will help to understand this:
: lda (ptr1),y ; #1
cmp (ptr2),y
@ -1188,7 +1188,7 @@ Here's a list of all control commands and a description, what they do:
Example:
.ifdef ToHex ; If someone used this subroutine
.ifref ToHex ; If someone used this subroutine
ToHex: tay ; Define subroutine
lda HexTab,y
rts
@ -1410,7 +1410,8 @@ Here's a list of all control commands and a description, what they do:
Please note that the function does only compare tokens, not token
attributes. So any number is equal to any other number, regardless of
the actual value. The same is true for strings.
the actual value. The same is true for strings. If you need to compare
tokens <em/and/ token attributes, use the .XMATCH function.
Example:
@ -1988,7 +1989,7 @@ following .DEFINE:
foo EQU $1234 ; This is accepted now
You may use the directive to define string constants use elsewhere:
You may use the directive to define string constants used elsewhere:
; Define the version number
.define VERSION "12.3a"