blob: 688b6462b6c7c7b367a53bd00288b9b1ddb9b578 [file] [log] [blame]
/*
* DOS interrupt 29h handler
*/
#include "config.h"
#include "windef.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);
}