minix/lib/nbsd_libc/arch/i386/stdlib/div.S
Gianluca Guida b6cbf7203b Import unmodified NetBSD libc in trunk
This patch imports the unmodified current version of NetBSD libc.
The NetBSD includes are in /nbsd_include, while the libc code itself is 
split between lib/nbsd_libc and common/lib/libc.
2011-02-14 19:36:03 +00:00

23 lines
401 B
ArmAsm

/* $NetBSD: div.S,v 1.8 2003/07/26 19:24:33 salo Exp $ */
/*
* Written by J.T. Conklin <jtc@NetBSD.org>.
* Public domain.
*/
#include <machine/asm.h>
#if defined(LIBC_SCCS)
RCSID("$NetBSD: div.S,v 1.8 2003/07/26 19:24:33 salo Exp $")
#endif
ENTRY(div)
pushl %ebx
movl 8(%esp),%ebx
movl 12(%esp),%eax
movl 16(%esp),%ecx
cdq
idiv %ecx
movl %eax,(%ebx)
movl %edx,4(%ebx)
popl %ebx
ret $4