1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-05-31 18:41:30 +00:00

Update documentation

This commit is contained in:
Karol Stasiak 2019-05-29 14:21:00 +02:00
parent 9b5134c7b9
commit 305376bcec

View File

@ -160,9 +160,6 @@ Currently, `>`, `<`, `<=`, `>=` operators perform signed comparison
if any of the types of their arguments is signed, if any of the types of their arguments is signed,
and unsigned comparison otherwise. and unsigned comparison otherwise.
**WARNING:** On targets using Intel 8080 and Sharp LR35902, a signed comparison `a OP b` is compiled as `a - b OP 0`,
which may give wrong results if the subtraction overflows.
## Assignment and in-place modification operators ## Assignment and in-place modification operators
**WARNING:** Unlike other languages, Millfork does not provide any guarantees about how many times the left hand side will be evaluated. **WARNING:** Unlike other languages, Millfork does not provide any guarantees about how many times the left hand side will be evaluated.