blob: 10e63ed0ba45c996fd70095a515dc485629ca77e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
--- doc/ca65.sgml.orig 2020-05-30 19:03:15 UTC
+++ doc/ca65.sgml
@@ -621,10 +621,10 @@ problem in most cases.
<table>
<tabular ca="clc">
<bf/Operator/| <bf/Description/| <bf/Precedence/@<hline>
-| Built-in string functions| 0@
-||~@
-| Built-in pseudo-variables| 1@
-| Built-in pseudo-functions| 1@
+ | Built-in string functions| 0@
+ | |~@
+ | Built-in pseudo-variables| 1@
+ | Built-in pseudo-functions| 1@
+| Unary positive| 1@
-| Unary negative| 1@
˜<newline>
@@ -635,7 +635,7 @@ problem in most cases.
.HIBYTE| Unary high-byte operator| 1@
^<newline>
.BANKBYTE| Unary bank-byte operator| 1@
-||~@
+ | |~@
*| Multiplication| 2@
/| Division| 2@
.MOD| Modulo operator| 2@
@@ -647,28 +647,28 @@ problem in most cases.
.SHL| Shift-left operator| 2@
>><newline>
.SHR| Shift-right operator| 2@
-||~@
+ | |~@
+| Binary addition| 3@
-| Binary subtraction| 3@
|<newline>
.BITOR| Bitwise or| 3@
-||~@
+ | |~@
= | Compare operator (equal)| 4@
<>| Compare operator (not equal)| 4@
<| Compare operator (less)| 4@
>| Compare operator (greater)| 4@
<=| Compare operator (less or equal)| 4@
>=| Compare operator (greater or equal)| 4@
-||~@
+ | |~@
&&<newline>
.AND| Boolean and| 5@
.XOR| Boolean xor| 5@
-||~@
+ | |~@
||<newline>
.OR| Boolean or| 6@
-||~@
+ | |~@
!<newline>
-.NOT| Boolean not| 7@<hline>
+.NOT| Boolean not| 7
</tabular>
<caption>Available operators, sorted by precedence
</table>
|