home *** CD-ROM | disk | FTP | other *** search
- #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());
- }
- }
-