home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Shareware Magazine 1996 December
/
CD_shareware_12-96.iso
/
DOS
/
Programa
/
CCDL122.ZIP
/
CLIBS
/
MATH
/
386
/
DIV.ASM
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Assembly Source File
|
1996-08-02
|
221 b
|
17 lines
.386
.model small
PUBLIC _div,_ldiv
.code
_ldiv:
_div:
push ebp
mov ebp,esp
mov eax,[ebp+12]
sub edx,edx
idiv dword ptr [ebp+16]
mov ecx,[ebp+8]
mov [ecx],eax
mov [ecx+4],edx
pop ebp
ret
end