The MASM Forum

General => The Campus => Topic started by: imadhx30 on January 01, 2014, 06:37:50 AM

Title: MUL
Post by: imadhx30 on January 01, 2014, 06:37:50 AM
MOV eax,21374253
MOV ebx,13628914
MUL ebx

edx:eax=21374253*13628914

how to view full results in masm32!!!!!!!!!
Title: Re: MUL
Post by: MichaelW on January 01, 2014, 06:46:30 AM

include \masm32\include\masm32rt.inc
.code
start:
    mov eax,3
    mov ebx,4
    mul ebx
    printf("%I64d\n",edx::eax)
    mov eax,21374253
    mov ebx,13628914
    mul ebx
    printf("%I64d\n\n",edx::eax)
    inkey
    exit
end start


12
291307855951242
Title: Re: MUL
Post by: imadhx30 on January 01, 2014, 06:51:24 AM
for the division!! tanks  :t
Title: Re: MUL
Post by: dedndave on January 01, 2014, 07:37:43 AM
MOV eax,21374253
MOV ebx,13628914
MUL ebx

push  edx
push  eax
push  eax
print uhex$(edx)
pop   eax
print uhex$(eax),13,10
pop   eax
pop   edx


for DIV

xor   edx,edx
mov   eax,0FFFFFFFFh
mov   ecx,10000h
div   ecx

push  ecx
push  edx
push  eax
push  ecx
push  edx
print uhex$(eax),'+'
pop   edx
print uhex$(edx),'/'
pop   ecx
print uhex$(ecx),13,10
pop   eax
pop   edx
pop   ecx
Title: Re: MUL
Post by: jj2007 on January 05, 2014, 09:57:41 PM
One more ;)

include \masm32\MasmBasic\MasmBasic.inc        ; download (http://masm32.com/board/index.php?topic=94.0)
MyQ        QWORD 123456789123456789
  Init
  mov eax, 123456789
  mov ebx, 1000000001
  Print Str$("eax*ebx=\t%u\n", eax*ebx)
  Inkey Str$("MyQ/ebx=\t%u", MyQ/ebx)
  Exit
end start


Output:
eax*ebx=        123456789123456789
MyQ/ebx=        123456789