From 50101570ef1372394b60d0ce88f2d682eda53843 Mon Sep 17 00:00:00 2001 From: Mathias Baumann Date: Tue, 18 Dec 2018 17:53:58 +0100 Subject: [PATCH] Format "and" as instruction op code --- docs/assembly.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/assembly.rst b/docs/assembly.rst index 5bb9825aa..b52068150 100644 --- a/docs/assembly.rst +++ b/docs/assembly.rst @@ -346,7 +346,7 @@ Literals You can use integer constants by typing them in decimal or hexadecimal notation and an appropriate ``PUSHi`` instruction will automatically be generated. The following creates code -to add 2 and 3 resulting in 5 and then computes the bitwise and with the string "abc". +to add 2 and 3 resulting in 5 and then computes the bitwise ``AND`` with the string "abc". The final value is assigned to a local variable called ``x``. Strings are stored left-aligned and cannot be longer than 32 bytes.