source:
trunk/minix/lib/i386/int64/ex64.s@
10
Last change on this file since 10 was 9, checked in by , 14 years ago | |
---|---|
File size: 341 bytes |
Rev | Line | |
---|---|---|
[9] | 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.