|
From: svz <sv...@ma...> - 2001-03-22 02:22:21
|
Hi all
have a non-Gcc syntax for assembler code and would like a translation to =
gcc compatible assembler syntax
- it is only
two instructions long :-)
int trunc(float flt)
{
int i;
asm
{
fld flt;
fistp i;
}
return i;
}
any thoughts?
Thanks :-)
|