7 /* #define DEBUG_INT */
11 /**********************************************************************
14 * Handler for int 10h (video).
16 void INT_Int10Handler( struct sigcontext_struct context
)
18 switch(AH_reg(&context
))
21 AL_reg(&context
) = 0x5b;
25 if (BL_reg(&context
) == 0x10)
27 BX_reg(&context
) = 0x0003;
28 CX_reg(&context
) = 0x0009;
33 BX_reg(&context
) = 0x0008;
37 INT_BARF( &context
, 0x10 );