#include "emu.h"
#include "rmov.h"
void fdecstp()
{
top--;
}
void fincstp()
{
top++;
}
FUNC emu_16_table[] = {
emu_bad, emu_bad, emu_bad, emu_bad, emu_bad, emu_bad, fdecstp, fincstp
};
void emu_16()
{
if (modrm > 0277)
{
(emu_16_table[modrm&7])();
}
else
{
emu_bad();
}
}