1998-10-17 13:55:51 +02:00
|
|
|
/*
|
|
|
|
* DOS interrupt 29h handler
|
|
|
|
*/
|
|
|
|
|
1998-12-03 17:29:56 +01:00
|
|
|
#include "config.h"
|
2001-07-18 23:04:23 +02:00
|
|
|
|
1998-12-03 17:29:56 +01:00
|
|
|
#include "winnt.h"
|
2001-07-18 23:04:23 +02:00
|
|
|
|
1998-12-03 17:29:56 +01:00
|
|
|
#include "console.h"
|
2001-07-18 23:04:23 +02:00
|
|
|
#include "miscemu.h"
|
1998-10-17 13:55:51 +02:00
|
|
|
|
|
|
|
/**********************************************************************
|
2001-12-04 20:54:44 +01:00
|
|
|
* DOSVM_Int29Handler
|
1998-10-17 13:55:51 +02:00
|
|
|
*
|
|
|
|
* Handler for int 29h (fast console output)
|
|
|
|
*/
|
2001-12-04 20:54:44 +01:00
|
|
|
void WINAPI DOSVM_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
|
|
|
}
|
|
|
|
|