2 * DOS interrupt 29h handler
15 /**********************************************************************
18 * Handler for int 29h (fast console output)
20 void WINAPI INT_Int29Handler( CONTEXT *context )
22 /* Yes, it seems that this is really all this interrupt does. */
23 _lwrite16( 1, &AL_reg(context), 1);