I'm trying to convert a 32-bit float into an extended precision 80-bit float. I'm using MSVC x86. I tried the following inline ASM code:
void Convert32To80(float *value, void *outValue)
{
__asm
{
fld float ptr [value];
fstp tbyte ptr [outValue];
}
}
Here, void *outValue is a buffer that is large enough to hold 10 bytes.
This looks right to me, but it's crashing when it's run.
Any help is appreciated!