2 * BIOS interrupt 11h handler
12 /**********************************************************************
15 * Handler for int 11h (get equipment list).
17 void WINAPI
INT_Int11Handler( CONTEXT
*context
)
20 int parallelports
= 0;
24 /* borrowed from Ralph Brown's interrupt lists
26 bits 15-14: number of parallel devices
27 bit 13: [Conv] Internal modem
29 bits 11- 9: number of serial devices
31 bits 7- 6: number of diskette drives minus one
32 bits 5- 4: Initial video mode:
38 bit 2: [PS] =1 if pointing device
40 bit 1: =1 if math co-processor
41 bit 0: =1 if diskette available for boot
43 /* Currently the only of these bits correctly set are:
44 bits 15-14 } Added by William Owen Smith,
45 bits 11-9 } wos@dcs.warwick.ac.uk
50 if (DRIVE_IsValid(0)) diskdrives
++;
51 if (DRIVE_IsValid(1)) diskdrives
++;
52 if (diskdrives
) diskdrives
--;
54 for (x
=0; x
!=MAX_PORTS
; x
++)
56 if (COM
[x
].devicename
)
58 if (LPT
[x
].devicename
)
61 if (serialports
> 7) /* 3 bits -- maximum value = 7 */
63 if (parallelports
> 3) /* 2 bits -- maximum value = 3 */
66 AX_reg(context
) = (diskdrives
<< 6) | (serialports
<< 9) |
67 (parallelports
<< 14) | 0x02;