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

Fix documentation of .loword and .hiword

This commit is contained in:
Karol Stasiak 2021-06-29 02:39:23 +02:00
parent 7f0def54bc
commit 7f6a0c6b0d

View File

@ -10,9 +10,9 @@ These suffixes can be only applied to arithmetic or pointer variables:
* `.hi` the most significant byte of a two-byte variable (word, pointer) (use `hi(_)` for arbitrary expressions) * `.hi` the most significant byte of a two-byte variable (word, pointer) (use `hi(_)` for arbitrary expressions)
* `.loword` the least significant byte of a three- or four-byte variable * `.loword` the least significant word of a three- or four-byte variable
* `.hiword` the most significant byte of a three- or four-byte variable * `.hiword` the most significant word of a three- or four-byte variable
* `.b0`, `.b1` etc. the given byte of the multi-byte arithmetic variable, with `.b0` being the least significant byte * `.b0`, `.b1` etc. the given byte of the multi-byte arithmetic variable, with `.b0` being the least significant byte