From 7f6a0c6b0d56ac087551bb607572b6edbdcb6647 Mon Sep 17 00:00:00 2001 From: Karol Stasiak Date: Tue, 29 Jun 2021 02:39:23 +0200 Subject: [PATCH] Fix documentation of .loword and .hiword --- docs/lang/suffixes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/lang/suffixes.md b/docs/lang/suffixes.md index da0c276a..c2b37a82 100644 --- a/docs/lang/suffixes.md +++ b/docs/lang/suffixes.md @@ -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) -* `.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