home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Stars of Shareware: Programmierung
/
SOURCE.mdf
/
programm
/
msdos
/
c
/
djgpp
/
emu387
/
e12.cc
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-04-28
|
357 b
|
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());
}
}