#include "emu.h"
#include "rmov.h"
void emu_50()
{
if (full())
return;
if (modrm > 0277)
{
// ffree st(i)
int i = modrm & 7;
st(i).tag = TW_E;
}
else
{
// fld m64real
top--;
r_mov((double *)get_modrm(), st());
}
}