| * BIOS interrupt 17h handler |
| DEFAULT_DEBUG_CHANNEL(int17) |
| /********************************************************************** |
| * Handler for int 17h (printer - output character). |
| void WINAPI INT_Int17Handler( CONTEXT86 *context ) |
| switch( AH_reg(context) ) |
| case 0x01: /* PRINTER - INITIALIZE */ |
| FIXME("Initialize Printer - Not Supported\n"); |
| AH_reg(context) = 0; /* time out */ |
| case 0x02: /* PRINTER - GET STATUS */ |
| FIXME("Get Printer Status - Not Supported\n"); |
| AH_reg(context) = 0; /* time out */ |
| INT_BARF( context, 0x17 ); |