home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Supreme Volume 6 #1
/
swsii.zip
/
swsii
/
201
/
DJGPP3.ZIP
/
EMU387
/
E12.CC
< prev
next >
Wrap
C/C++ Source or Header
|
1991-04-28
|
357b
|
26 lines
#include "emu.h"
#include "rmov.h"
void fnop()
{
}
FUNC emu_12_table[] = {
fnop, emu_bad, emu_bad, emu_bad, emu_bad, emu_bad, emu_bad, emu_bad
};
void emu_12()
{
if (modrm > 0277)
{
(emu_12_table[modrm&7])();
}
else
{
// fst m32real
if (empty())
return;
r_mov(st(), (float *)get_modrm());
}
}