home *** CD-ROM | disk | FTP | other *** search
/ Total Destruction / Total_Destruction.iso / addons / Lccwin32.exe / Lccwin32 / lccpub / lib / src / div.asm < prev    next >
Encoding:
Assembly Source File  |  1997-12-11  |  177 b   |  13 lines

  1.     .text
  2.     .file "div.asm"
  3.     .type    _div,function
  4. _div:
  5.     movl    8(%esp),%eax
  6.     cdq
  7.     idivl    12(%esp)
  8.     movl    4(%esp),%ecx
  9.     movl    %eax,(%ecx)
  10.     movl    %edx,4(%ecx)
  11.     ret
  12.     .globl    _div
  13.