home *** CD-ROM | disk | FTP | other *** search
- #include "emu.h"
- #include "rmov.h"
-
- void emu_11()
- {
- if (empty())
- return;
- if (modrm > 0277)
- {
- // fxch st(i)
- int i = modrm & 7;
- if (empty(i))
- return;
- reg t;
- r_mov(st(), t);
- r_mov(st(i), st());
- r_mov(t, st(i));
- }
- else
- {
- emu_bad();
- }
- }
-