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