minix/lib/libc/arch/i386/int64/cvu64.S
Arun Thomas 9a21d1a2fd Macros for symbols used in both ASM and C
-The macros take care of prepending the leading underscore when
 necessary.
2010-08-17 16:44:07 +00:00

18 lines
423 B
ArmAsm

/* cvu64() - unsigned converted to 64 bit Author: Kees J. Bot */
/* 7 Dec 1995 */
#include <minix/compiler.h>
#include <machine/asm.h>
ENTRY(cvu64)
/* u64_t cvu64(unsigned i); */
ENTRY(cvul64)
/* u64_t cvul64(unsigned long i); */
movl 4(%esp), %eax
movl 8(%esp), %edx
movl %edx, (%eax)
movl $0, 4(%eax)
ret BYTES_TO_POP_ON_STRUCT_RETURN
/* */
/* $PchId: cvu64.ack.s,v 1.2 1996/04/11 18:59:57 philip Exp $ */