#include "emu.h"
#include "rmov.h"
void emu_26()
{
if (empty())
return;
if (modrm > 0277)
{
//
emu_bad();
}
else
{
// fidiv m32int
reg t, t2;
r_mov((long *)get_modrm(), t);
r_div(st(), t, t2);
r_mov(t2, st());
}
}