minix/lib/libc/arch/i386/int64/ex64.S
2010-03-03 14:27:30 +00:00

19 lines
364 B
ArmAsm

/* ex64*() - extract low or high 32 bits of a 64 bit number */
/* Author: Kees J. Bot */
/* 7 Dec 1995 */
.text
.globl _ex64lo, _ex64hi
_ex64lo:
/* unsigned long ex64lo(u64_t i); */
movl 4(%esp), %eax
ret
_ex64hi:
/* unsigned long ex64hi(u64_t i); */
movl 8(%esp), %eax
ret
/* */
/* $PchId: ex64.ack.s,v 1.2 1996/04/11 18:59:57 philip Exp $ */