home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / gnu / djgpp / emu387 / e37.cc < prev    next >
Encoding:
C/C++ Source or Header  |  1991-04-28  |  259 b   |  20 lines

  1. #include "emu.h"
  2. #include "rmov.h"
  3.  
  4. void emu_37()
  5. {
  6.   if (modrm > 0277)
  7.   {
  8.     emu_bad();
  9.   }
  10.   else
  11.   {
  12.     // fstp m80real
  13.     if (empty())
  14.       return;
  15.     r_mov(st(), (long double *)get_modrm());
  16.     st().tag = TW_E;
  17.     top++;
  18.   }
  19. }
  20.