From e45f055f572452832939a8a7d9ffa560d0ae7808 Mon Sep 17 00:00:00 2001 From: Pablo Parra Date: Mon, 6 Sep 2021 13:13:35 +0200 Subject: [PATCH] Minor fix --- docs/directives.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/directives.rst b/docs/directives.rst index 4f3a977..ac71f12 100644 --- a/docs/directives.rst +++ b/docs/directives.rst @@ -22,7 +22,7 @@ characters. In the case of a single character, the initial value stored will correspond to the ASCII code of the character encoded in single quotes (``''``). In the case of an array, the values corresponding to the ASCII codes of those encoded between double quotes (``""```) will be encoded. If you want to encode a numeric value -explicitly within the array, you must do it using the escape combination ``\x``. +explicitly within the array, you must do it using the escape code ``\x``. +-----------------------------------+------------------------------------------------------------------+ | Directive | Result | @@ -48,7 +48,7 @@ space. This operand can only be of numeric type. +---------------------+-----------------------------------------------+ | Directive | Result | -+============================+========================================+ ++=====================+===============================================+ | ``DW var1, 2048`` | Reserseves two bytes with values {0x80, 0x00} | +---------------------+-----------------------------------------------+ | ``DW var2, 0x1FFF`` | Reserseves two bytes with values {0x1F, 0xFF} |