2 * DOS interrupt 29h handler
12 /**********************************************************************
15 * Handler for int 29h (fast console output)
17 void WINAPI
DOSVM_Int29Handler( CONTEXT86
*context
)
19 /* Yes, it seems that this is really all this interrupt does. */
20 CONSOLE_Write(AL_reg(context
), 0, 0, 0);