minix/lib/nbsd_libc/arch/x86_64/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

19 lines
344 B
ArmAsm

/* $NetBSD: div.S,v 1.1 2001/06/19 00:25:04 fvdl Exp $ */
/*
* Written by Frank van der Linden (fvdl@wasabisystems.com)
* Public domain.
*/
#include <machine/asm.h>
#if defined(LIBC_SCCS)
RCSID("$NetBSD: div.S,v 1.1 2001/06/19 00:25:04 fvdl Exp $")
#endif
ENTRY(div)
movl %edi, %eax
cltd
idivl %esi
salq $32, %rdx
orq %rdx,%rax
ret