|
|
1.1 root 1: //////////
2: / libc/crt/i386/ufcvt.s
3: / i386 C runtime library.
4: / IEEE software floating point support.
5: //////////
6:
7: //////////
8: / unsigned int _ufcvt()
9: /
10: / Convert float in %eax to unsigned int, return in %eax.
11: //////////
12:
13: .globl _udcvt
14: .globl _ufcvt
15: .globl _dfcvt
16:
17: _ufcvt:
18: push %edx
19: call _dfcvt / (double)f to EDX:EAX
20: call _udcvt / (double)f to unsigned in EAX
21: pop %edx
22: ret
23:
24: / end of libc/crt/i386/ufcvt.s
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.