registers.inc 286 B

12345678910
  1. { Registers record used by Intr and MsxDos. 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: (BC, DE, AF, HL, IX, IY: Word);
  7. 1: (C, B, E, D, Flags, A, L, H, IXl, IXh, IYl, IYh: Byte);
  8. end;