1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-02 15:29:33 +00:00

Small fixes

git-svn-id: svn://svn.cc65.org/cc65/trunk@2644 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-11-11 23:09:04 +00:00
parent 8eebbd1b74
commit 8f4d0539c2

View File

@ -385,7 +385,7 @@ expression:
<item> If the result of an expression is constant, the actual value is
checked to see if it's a byte sized expression or not.
<item> If the expression is explicitly casted to a byte sized expression by
one of the '&gt;'/'&lt;' operators, it is a byte expression.
one of the '&gt;', '&lt;' or '^' operators, it is a byte expression.
<item> If this is not the case, and the expression contains a symbol,
explicitly declared as zero page symbol (by one of the .importzp or
.exportzp instructions), then the whole expression is assumed to be
@ -458,7 +458,6 @@ Available operators sorted by precedence:
.XMATCH Builtin function 1
.PARAMCOUNT Builtin pseudo variable (r/o) 1
.REFERENCED Builtin function 1
:: Global namespace override 1
+ Unary plus 1
- Unary minus 1
~ Unary bitwise not 1
@ -511,7 +510,7 @@ Some of the pseudo variables mentioned above need some more explanation:
* This symbol is replaced by the value of the program
counter at start of the current instruction. Note, that
'*' yields a rvalue, that means, you cannot assign to it.
Use <tt/.ORG/ to set the program counter in sections with
Use .ORG to set the program counter in sections with
absolute code.
</verb></tscreen>
<p>