Answers for "mul asm att"

0

mul asm att

mov  ax, 5     ; ax = 5
mov  cx, 10    ; cx = 10
mul  cx        ; ax = ax * cx   ; actually dx:ax = ax * cx
Posted by: Guest on October-30-2020

Browse Popular Code Answers by Language