2010-03-03 15:27:30 +01:00
|
|
|
/* cvu64() - unsigned converted to 64 bit Author: Kees J. Bot */
|
|
|
|
/* 7 Dec 1995 */
|
2010-03-24 18:25:17 +01:00
|
|
|
#include <minix/compiler.h>
|
2010-08-17 18:44:07 +02:00
|
|
|
#include <machine/asm.h>
|
2010-03-24 18:25:17 +01:00
|
|
|
|
2010-08-17 18:44:07 +02:00
|
|
|
ENTRY(cvu64)
|
2010-03-03 15:27:30 +01:00
|
|
|
/* u64_t cvu64(unsigned i); */
|
2010-08-17 18:44:07 +02:00
|
|
|
ENTRY(cvul64)
|
2010-03-03 15:27:30 +01:00
|
|
|
/* u64_t cvul64(unsigned long i); */
|
|
|
|
movl 4(%esp), %eax
|
|
|
|
movl 8(%esp), %edx
|
|
|
|
movl %edx, (%eax)
|
|
|
|
movl $0, 4(%eax)
|
2010-03-24 18:25:17 +01:00
|
|
|
ret BYTES_TO_POP_ON_STRUCT_RETURN
|
2010-03-03 15:27:30 +01:00
|
|
|
|
|
|
|
/* */
|
|
|
|
/* $PchId: cvu64.ack.s,v 1.2 1996/04/11 18:59:57 philip Exp $ */
|