simple typo

Arthur Paulino 2017-12-29 10:52:00 -03:00
parent 56c8c83456
commit b24b95f7fc

@ -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