home *** CD-ROM | disk | FTP | other *** search
- #include "emu.h"
- #include "rmov.h"
-
- void emu_10()
- {
- if (full())
- return;
- if (modrm > 0277)
- {
- // fld st(i)
- int i = modrm & 7;
- if (empty(i))
- return;
- r_mov(st(i), st(7));
- top--;
- return;
- }
- else
- {
- // fld m32real
- top--;
- r_mov((float *)get_modrm(), st());
- }
- }
-