◄Summary► ◄Details► ◄Example► ◄Back► Argument register_values Record variable of type Registers Description The MsDos procedure initiates DOS interrupt $21 to execute a specified DOS interrupt function. It loads the values passed by register_values into the machine registers and then jumps to the DOS interrupt handler. After the interrupt procedure ends, MsDos loads the final register values into register_values. The register_values argument passes the specified register values in a record of type Registers, defined in the Dos unit. The .AH field passes the number of the desired function. Other fields pass other values as needed. Consult a DOS technical reference for information about DOS interrupt functions. MsDos is equivalent to Intr( $21, register_values );