1
0
mirror of https://github.com/KarolS/millfork.git synced 2026-04-21 09:16:34 +00:00

Z80: Operators *'=, <<' and <<'=

This commit is contained in:
Karol Stasiak
2018-07-23 15:47:03 +02:00
parent 85243c96a7
commit a34acbf6ce
5 changed files with 298 additions and 22 deletions
+3 -3
View File
@@ -172,9 +172,9 @@ An expression of form `a[f()] += b` may call `f` an undefined number of times.
`mutable long <<= byte`
* `<<'=`, `>>'=`: decimal shift in place
`mutable byte <<= constant byte`
`mutable word <<= constant byte`
`mutable long <<= constant byte`
`mutable byte <<'= constant byte`
`mutable word <<'= constant byte`
`mutable long <<'= constant byte`
* `-=`, `-'=`: subtraction in place
`mutable byte -= byte`