home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / TOOL_INC.ZIP / REGPACK.INC < prev    next >
Encoding:
Text File  |  1988-01-29  |  322 b   |  10 lines

  1. type
  2.   { Registers record used by Intr and MsDos }
  3.   Registers = record
  4.                 case Integer of
  5.                   0: (AX,BX,CX,DX,BP,SI,DI,DS,ES,Flags: integer);
  6. {! 2. Instead use the Registers type from the Turbo 4.0 DOS uni^t.}
  7.                   1: (AL,AH,BL,BH,CL,CH,DL,DH: Byte);
  8.               end;
  9.  
  10.