registers.inc 287 B

123456789
  1. { Registers record used by Intr and MsDos. This include file is shared between
  2. the system unit and the dos unit. }
  3. type
  4. Registers = packed record
  5. case Integer of
  6. 0: (AX, BX, CX, DX, BP, SI, DI, DS, ES, Flags: Word);
  7. 1: (AL, AH, BL, BH, CL, CH, DL, DH: Byte);
  8. end;