Important Notice
The pages on this site contain documentation for very old MS-DOS software,
purely for historical purposes.
If you're looking for up-to-date documentation, particularly for programming,
you should not rely on the information found here, as it will be woefully
out of date.
Registers
◄Dos Unit► ◄Contents► ◄Index► ◄Back►
TYPE
{ record to simulate processor registers }
Registers = RECORD
CASE Integer OF
0 : (AX, BX, CX, DX, BP, SI, DI, DS, ES, Flags : Word);
1 : (AL, AH, BL, BH, CL, CH, DL, DH : Byte);
END;
Unit: Dos
Context: Intr, MsDos
Description
The Registers record allows register values to be set before──and
examined after──a call to the Intr or MsDos procedure. The fields
represent various processor registers.