home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 359_11 / patch5.000 / EMU387 / E70.CC < prev    next >
C/C++ Source or Header  |  1991-09-11  |  242b  |  20 lines

  1. #include "emu.h"
  2. #include "rmov.h"
  3.  
  4. void emu_70()
  5. {
  6.   if (full())
  7.     return;
  8.   if (modrm > 0277)
  9.   {
  10.     emu_bad();
  11.   }
  12.   else
  13.   {
  14.     // fild m16int
  15.     reg t1, t2;
  16.     top--;
  17.     r_mov((short *)get_modrm(), st());
  18.   }
  19. }
  20.