mirror of
https://github.com/simon987/Much-Assembly-Required.git
synced 2025-04-18 02:06:43 +00:00
simple typo
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
|
||||
|
Loading…
x
Reference in New Issue
Block a user