mirror of
https://frontier.innolan.net/github/amiga-ixemul.git
synced 2026-09-12 19:22:54 +00:00
11 lines
181 B
C
11 lines
181 B
C
|
|
__attribute__((always_inline)) inline long lrintf(float x)
|
|
{
|
|
long value;
|
|
__asm (" fmove%.l %1, %0\n\t"
|
|
: "=d" (value)
|
|
: "f" (x));
|
|
return value;
|
|
|
|
}
|