home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Stars of Shareware: Programmierung
/
SOURCE.mdf
/
programm
/
msdos
/
c
/
djgpp
/
emu387
/
e16.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-25
|
332 b
|
30 lines
#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();
}
}