17 lines
382 B
ArmAsm
17 lines
382 B
ArmAsm
/* make64() - make a 64 bit number from two 32 bit halves */
|
|
/* Author: Kees J. Bot */
|
|
/* 7 Dec 1995 */
|
|
.text
|
|
.globl _make64
|
|
|
|
_make64:
|
|
/* u64_t make64(unsigned long lo, unsigned long hi); */
|
|
movl 4(%esp), %eax
|
|
movl 8(%esp), %edx
|
|
movl %edx, (%eax)
|
|
movl 12(%esp), %edx
|
|
movl %edx, 4(%eax)
|
|
ret
|
|
|
|
/* */
|
|
/* $PchId: make64.ack.s,v 1.2 1996/04/11 18:59:57 philip Exp $ */
|