dec21140A ethernet driver for virtualpc, contributed by nicolas tittley.
[minix.git] / lib / i386 / int64 / cvu64.s
bloba35441e5a4764cf6181098970d966e90724632ff
1 ! cvu64() - unsigned converted to 64 bit Author: Kees J. Bot
2 ! 7 Dec 1995
3 .sect .text
4 .define _cvu64, _cvul64
6 _cvu64: ! u64_t cvu64(unsigned i);
7 _cvul64: ! u64_t cvul64(unsigned long i);
8 mov eax, 4(esp)
9 mov edx, 8(esp)
10 mov (eax), edx
11 mov 4(eax), 0
12 ret
15 ! $PchId: cvu64.ack.s,v 1.2 1996/04/11 18:59:57 philip Exp $