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