1998-10-17 13:55:51 +02:00
|
|
|
/*
|
|
|
|
* DOS interrupt 29h handler
|
|
|
|
*/
|
|
|
|
|
1998-12-03 17:29:56 +01:00
|
|
|
#include "config.h"
|
1999-03-14 17:35:05 +01:00
|
|
|
#include "windef.h"
|
1998-12-03 17:29:56 +01:00
|
|
|
#include "winnt.h"
|
|
|
|
#include "console.h"
|
1998-10-17 13:55:51 +02:00
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* INT_Int29Handler
|
|
|
|
*
|
|
|
|
* Handler for int 29h (fast console output)
|
|
|
|
*/
|
1999-06-26 20:40:24 +02:00
|
|
|
void WINAPI INT_Int29Handler( CONTEXT86 *context )
|
1998-10-17 13:55:51 +02:00
|
|
|
{
|
|
|
|
/* Yes, it seems that this is really all this interrupt does. */
|
1998-12-03 17:29:56 +01:00
|
|
|
CONSOLE_Write(AL_reg(context), 0, 0, 0);
|
1998-10-17 13:55:51 +02:00
|
|
|
}
|
|
|
|
|