blob: 2ae572cb592f1223ab65ea44d15ec38b0b652a5b [file] [log] [blame]
/*
* DOS interrupt 29h handler
*/
#include "config.h"
#include "wintypes.h"
#include "winnt.h"
#include "console.h"
/**********************************************************************
* INT_Int29Handler
*
* Handler for int 29h (fast console output)
*/
void WINAPI INT_Int29Handler( CONTEXT *context )
{
/* Yes, it seems that this is really all this interrupt does. */
CONSOLE_Write(AL_reg(context), 0, 0, 0);
}