Title Data Transfer Examples INCLUDE Irvine32.inc .data ;put data variables here if required. .code main PROC mov ax, 1234h mov bx, 100h mul bx ;ax * bx = dx ax ;check CF, product in high word (dx) jnc skiphiword ;WriteDec high word of product skiphiword: movzx eax, ax ;writeDec low word of prodcut call WriteDec exit main ENDP END main