home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / REGSET.ZIP / REGSET.PAS
Encoding:
Pascal/Delphi Source File  |  1988-07-31  |  444 b   |  11 lines

  1. { The register set type used for procedures Intr (16 bit), MsDos (MS-DOS),
  2.   and BDos (CP/M-86).
  3.   In this form, all the registers can be referred to as whole words, and
  4.   those that are commonly referred to a byte at a time can also be used. }
  5.  
  6.   Type
  7.     RegisterSet=Record Case Integer Of
  8.                   1: (AX,BX,CX,DX,BP,SI,DI,DS,ES,Flags: Integer);
  9.                   2: (AL,AH,BL,BH,CL,CH,DL,DH: Byte);
  10.                 End;
  11.