home *** CD-ROM | disk | FTP | other *** search
- #include "emu.h"
- #include "rmov.h"
-
- void emu_53()
- {
- if (modrm > 0277)
- {
- // fstp st(i)
- r_mov(st(), st(modrm&7));
- st().tag = TW_E;
- top++;
- }
- else
- {
- // fstp m64real
- if (empty())
- return;
- r_mov(st(), (double *)get_modrm());
- st().tag = TW_E;
- top++;
- }
- }
-