home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_01_03 / 1n03069a < prev    next >
Text File  |  1990-07-06  |  360b  |  28 lines

  1.  
  2.  
  3. struct WORDREGS 
  4.     {
  5.     unsigned int ax;
  6.     unsigned int bx;
  7.     unsigned int cx;
  8.     unsigned int dx;
  9.     unsigned int si;
  10.     unsigned int di;
  11.     unsigned int flags;
  12.     };
  13.  
  14. struct BYTEREGS 
  15.     {
  16.     unsigned char al, ah;
  17.     unsigned char bl, bh;
  18.     unsigned char cl, ch;
  19.     unsigned char dl, dh;
  20.     };
  21.  
  22. union REGS 
  23.     {
  24.     struct WORDREGS x;
  25.     struct BYTEREGS h;
  26.     };
  27.  
  28.