2 * BIOS interrupt 17h handler
8 #include "debugtools.h"
13 DEFAULT_DEBUG_CHANNEL(int17
)
15 /**********************************************************************
18 * Handler for int 17h (printer - output character).
20 void WINAPI
INT_Int17Handler( CONTEXT86
*context
)
22 switch( AH_reg(context
) )
24 case 0x01: /* PRINTER - INITIALIZE */
25 FIXME("Initialize Printer - Not Supported\n");
26 AH_reg(context
) = 0; /* time out */
28 case 0x02: /* PRINTER - GET STATUS */
29 FIXME("Get Printer Status - Not Supported\n");
32 AH_reg(context
) = 0; /* time out */
33 INT_BARF( context
, 0x17 );