2 * BIOS interrupt 17h handler
8 #include "debugtools.h"
12 DEFAULT_DEBUG_CHANNEL(int);
14 /**********************************************************************
17 * Handler for int 17h (printer - output character).
19 void WINAPI
DOSVM_Int17Handler( CONTEXT86
*context
)
21 switch( AH_reg(context
) )
23 case 0x01: /* PRINTER - INITIALIZE */
24 FIXME("Initialize Printer - Not Supported\n");
25 AH_reg(context
) = 0; /* time out */
27 case 0x02: /* PRINTER - GET STATUS */
28 FIXME("Get Printer Status - Not Supported\n");
31 AH_reg(context
) = 0; /* time out */
32 INT_BARF( context
, 0x17 );