home *** CD-ROM | disk | FTP | other *** search
- c dos.fh
- c
- c Defines the data structures used for passing register contents
- c back and forth to the DOS interface routines by a Fortran program.
- c
- c Copyright (C) MicroWay, Inc., 1988, 1989
-
-
- integer*4 intno
-
- c Interrupt number: 33 for int 21h, etc.
-
-
- integer*4 inregs(7),outregs(7)
- integer*2 winregs(14),woutregs(14)
- integer*1 binregs(28),boutregs(28)
-
- c inregs(1) = eax
- c inregs(2) = ebx
- c inregs(3) = ecx
- c inregs(4) = edx
- c inregs(5) = esi
- c inregs(6) = edi
- c inregs(7) = eflags
- c
- c And similarly for outregs.
-
-
- c winregs(1) = ax
- c winregs(3) = bx
- c winregs(5) = cx
- c winregs(7) = dx
- c winregs(9) = si
- c winregs(11) = di
- c winregs(13) = flags
- c
- c winregs(2) = winregs(4) = winregs(6) = winregs(8) = winregs(10) =
- c winregs(12) = winregs(14) = unused
- c
- c And similarly for woutregs.
-
-
- c binregs(1) = al
- c binregs(2) = ah
- c binregs(5) = bl
- c binregs(6) = bh
- c binregs(9) = cl
- c binregs(10) = ch
- c binregs(13) = dl
- c binregs(14) = dh
- c binregs(25) = lo_flags
- c binregs(26) = hi_flags
- c
- c All other elements of binregs are unused.
- c
- c And similarly for boutregs.
-
-
- c Overlay byte, word and doubleword register data structures.
-
- equivalence (inregs(1), winregs(1), binregs(1))
- equivalence (outregs(1), woutregs(1), boutregs(1))
-