Previous: 4.24.1.4 DosError variable To the Table of Contents Next: 4.24.1.6 SearchRec type
4.24.1.4 DosError variable Table of Contents 4.24.1.6 SearchRec type

- 4.24.1.5 -
Table of Contents
4. Standard Units
4.24. DOS - MSDOS support unit
4.24.1.5 Registers type


4.24.1.5 Registers type

Targets: MS-DOS only


Dos Unit

The Intr and MsDos procedures use variables of type Registers to specify the input register contents and examine the output register contents of a software interrupt.

Declaration:
type
  Registers =   record
   case Integer of 
     1: (edi, esi, ebp, _res, ebx, edx, ecx, eax: Longint;
         flags, es, ds, fs, gs, ip, cs, sp, ss: Word);
     2: (_dmy2: array [0..15] of byte; bl, bh, b1, b2, dl,
         dh, d1, d2, cl, ch, c1, c2, al, ah: Byte);
     3: (di, i1, si, i2, bp, i3, i4, i5, bx, b3, dx, d3, cx,
         c3, ax: Word);
   end;



Previous: 4.24.1.4 DosError variable To the Table of Contents Next: 4.24.1.6 SearchRec type
4.24.1.4 DosError variable Table of Contents 4.24.1.6 SearchRec type

- 4.24.1.5 -