home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Total Destruction
/
Total_Destruction.iso
/
addons
/
Lccwin32.exe
/
Lccwin32
/
lccpub
/
lib
/
src
/
div.asm
< prev
next >
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
|
1997-12-11
|
177 b
|
13 lines
.text
.file "div.asm"
.type _div,function
_div:
movl 8(%esp),%eax
cdq
idivl 12(%esp)
movl 4(%esp),%ecx
movl %eax,(%ecx)
movl %edx,4(%ecx)
ret
.globl _div