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