source: trunk/minix/lib/i386/int64/ex64.s@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 341 bytes
Line 
1! ex64*() - extract low or high 32 bits of a 64 bit number
2! Author: Kees J. Bot
3! 7 Dec 1995
4.sect .text
5.define _ex64lo, _ex64hi
6
7_ex64lo: ! unsigned long ex64lo(u64_t i);
8 mov eax, 4(esp)
9 ret
10
11_ex64hi: ! unsigned long ex64hi(u64_t i);
12 mov eax, 8(esp)
13 ret
14
15!
16! $PchId: ex64.ack.s,v 1.2 1996/04/11 18:59:57 philip Exp $
Note: See TracBrowser for help on using the repository browser.