I have this code snippet adapted from the pcasm book by Paul Carter:
mov bx, 10d
mov ax, 10d
mul bx ; multiplied by ax, stored in dx:ax
Now, how would I store the register pair dx:ax into, say, ecx?
mov bx, 10d
mov ax, 10d
mul bx ; multiplied by ax, stored in dx:ax
Now, how would I store the register pair dx:ax into, say, ecx?