13 lines
288 B
ArmAsm
13 lines
288 B
ArmAsm
/* diff64() - 64 bit subtraction giving unsigned Author: Kees J. Bot */
|
|
/* 7 Dec 1995 */
|
|
.text
|
|
.globl _diff64
|
|
|
|
_diff64:
|
|
/* unsigned diff64(u64_t i, u64_t j); */
|
|
movl 4(%esp), %eax
|
|
subl 12(%esp), %eax
|
|
ret
|
|
|
|
/* */
|
|
/* $PchId: diff64.ack.s,v 1.2 1996/04/11 18:59:57 philip Exp $ */
|