home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / msdos / c / mscwattc / src / regpack.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-01-15  |  727 b   |  23 lines

  1. //**********************************************************
  2. // REGPACK structure for MSC600
  3. //  - This is what Borland C++ "REGPACK" looks like
  4. //    from Gary Dobbins 01/10/92
  5. // Economic Science Laboratory, University of Arizona
  6. //**********************************************************
  7. struct REGPACK {
  8.        unsigned int r_ax;
  9.        unsigned int r_bx;
  10.        unsigned int r_cx;
  11.        unsigned int r_dx;
  12.        unsigned int r_bp;
  13.        unsigned int r_si;
  14.        unsigned int r_di;
  15.        unsigned int r_ds;
  16.        unsigned int r_es;
  17.        unsigned int r_flags;
  18. };
  19.  
  20. int _far intr( int IntNum, struct REGPACK _far * pRegs );
  21.  
  22. void GetSegOff( unsigned * pSeg, unsigned * pOff, void far * pFar );
  23.