2 * Interrupt vectors emulation
4 * Copyright 1995 Alexandre Julliard
14 #include "registers.h"
15 #include "stackframe.h"
19 static SEGPTR INT_Vectors
[256];
21 /* Ordinal number for interrupt 0 handler in WPROCS.DLL */
22 #define FIRST_INTERRUPT_ORDINAL 100
25 /**********************************************************************
31 HMODULE hModule
= GetModuleHandle( "WPROCS" );
33 for (vector
= 0; vector
< 256; vector
++)
35 if (!(INT_Vectors
[vector
] = MODULE_GetEntryPoint( hModule
,
36 FIRST_INTERRUPT_ORDINAL
+vector
)))
38 fprintf(stderr
,"Internal error: no vector for int %02x\n",vector
);
46 /**********************************************************************
49 * Return the interrupt vector for a given interrupt.
51 SEGPTR
INT_GetHandler( BYTE intnum
)
53 return INT_Vectors
[intnum
];
57 /**********************************************************************
60 * Set the interrupt handler for a given interrupt.
62 void INT_SetHandler( BYTE intnum
, SEGPTR handler
)
64 dprintf_int( stddeb
, "Set interrupt vector %02x <- %04x:%04x\n",
65 intnum
, HIWORD(handler
), LOWORD(handler
) );
66 INT_Vectors
[intnum
] = handler
;
70 /**********************************************************************
73 void INT_DummyHandler( struct sigcontext_struct context
)
77 STACK16FRAME
*frame
= CURRENT_STACK16
;
78 BUILTIN_GetEntryPoint( frame
->entry_cs
, frame
->entry_ip
, &ordinal
, &name
);
79 INT_BARF( &context
, ordinal
- FIRST_INTERRUPT_ORDINAL
);
83 /**********************************************************************
86 * Handler for int 11h (get equipment list).
88 void INT_Int11Handler( struct sigcontext_struct context
)
91 int parallelports
= 0;
95 /* borrowed from Ralph Brown's interrupt lists
97 bits 15-14: number of parallel devices
98 bit 13: [Conv] Internal modem
100 bits 11- 9: number of serial devices
102 bits 7- 6: number of diskette drives minus one
103 bits 5- 4: Initial video mode:
109 bit 2: [PS] =1 if pointing device
111 bit 1: =1 if math co-processor
112 bit 0: =1 if diskette available for boot
114 /* Currently the only of these bits correctly set are:
115 bits 15-14 } Added by William Owen Smith,
116 bits 11-9 } wos@dcs.warwick.ac.uk
121 if (DRIVE_IsValid(0)) diskdrives
++;
122 if (DRIVE_IsValid(1)) diskdrives
++;
123 if (diskdrives
) diskdrives
--;
125 for (x
=0; x
!=MAX_PORTS
; x
++)
127 if (COM
[x
].devicename
)
129 if (LPT
[x
].devicename
)
132 if (serialports
> 7) /* 3 bits -- maximum value = 7 */
134 if (parallelports
> 3) /* 2 bits -- maximum value = 3 */
137 AX_reg(&context
) = (diskdrives
<< 6) | (serialports
<< 9) |
138 (parallelports
<< 14) | 0x02;
142 /**********************************************************************
145 * Handler for int 12h (get memory size).
147 void INT_Int12Handler( struct sigcontext_struct context
)
149 AX_reg(&context
) = 640;
153 /**********************************************************************
156 * Handler for int 15h.
158 void INT_Int15Handler( struct sigcontext_struct context
)
160 INT_BARF( &context
, 0x15 );
164 /**********************************************************************
167 * Handler for int 16h (keyboard).
169 void INT_Int16Handler( struct sigcontext_struct context
)
171 INT_BARF( &context
, 0x16 );