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:
Assembly Source File  |  1996-08-02  |  221 b   |  17 lines

  1.     .386
  2.     .model small
  3.     PUBLIC _div,_ldiv
  4.     .code
  5. _ldiv:
  6. _div:
  7.     push    ebp
  8.     mov    ebp,esp
  9.     mov    eax,[ebp+12]
  10.     sub    edx,edx
  11.     idiv    dword ptr [ebp+16]
  12.     mov    ecx,[ebp+8]
  13.     mov    [ecx],eax
  14.     mov    [ecx+4],edx
  15.     pop    ebp
  16.     ret
  17.     end