2 * DOS interrupt 29h handler
10 /**********************************************************************
13 * Handler for int 29h (fast console output)
15 void WINAPI
INT_Int29Handler( CONTEXT
*context
)
17 /* Yes, it seems that this is really all this interrupt does. */
18 CONSOLE_Write(AL_reg(context
), 0, 0, 0);