1
0
mirror of https://github.com/cc65/cc65.git synced 2025-04-03 15:29:44 +00:00

Fix up character translation explanation

git-svn-id: svn://svn.cc65.org/cc65/trunk@527 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2000-12-02 22:35:49 +00:00
parent 41a82d587a
commit a51c27f542

View File

@ -2546,12 +2546,9 @@ of a <tt><ref id=".BYTE" name=".BYTE"></tt> or <tt><ref id=".ASCIIZ"
name=".ASCIIZ"></tt> command. Characters are translated as soon as they are
used as part of an expression.
This behaviour is very intuitive - outside of macros. With macros, it will
lead sometimes to problems, since the exact time of translation depends on the
exact use.
This behaviour is very intuitive outside of macros but may be confusing when
doing more complex macros. If you compare characters against numeric values,
be sure to take the translation into account.