From b24b95f7fc09627b93709d5675aaea37bf493a4a Mon Sep 17 00:00:00 2001 From: Arthur Paulino Date: Fri, 29 Dec 2017 10:52:00 -0300 Subject: [PATCH] simple typo --- Basic-Assembly-tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Basic-Assembly-tutorial.md b/Basic-Assembly-tutorial.md index 4de742a..f7130e4 100644 --- a/Basic-Assembly-tutorial.md +++ b/Basic-Assembly-tutorial.md @@ -313,7 +313,7 @@ The A register and the source operand are multiplied and the 32-bit result is st MOV A, 6 MUL 4 ``` -The result of the multiplication (A * 4 = 24) is stored in Y:A, the most significant (leftmost, or higher) word is stored in the Y register, and the least significant (rightmost, or lower) word is stored in the A register. The Y register is not overwritten if the higher word is zero (if the result of the multiplication is lower than 65536). +The result of the multiplication (A * 4 = 24) is stored in Y:A. The most significant (leftmost, or higher) word is stored in the Y register, and the least significant (rightmost, or lower) word is stored in the A register. The Y register is not overwritten if the higher word is zero (if the result of the multiplication is lower than 65536). ``` Y = 0x???? # The value of Y is unchanged A = 0x0018 # 6 * 4 = 24