Commit f990cfab authored by Joseph Pranevich's avatar Joseph Pranevich Committed by Alexandre Julliard

Added int29 (Fast Write to Screen) support.

parent 7bcf341a
/*
* DOS interrupt 29h handler
*/
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "ldt.h"
#include "drive.h"
#include "msdos.h"
#include "miscemu.h"
#include "module.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. */
_lwrite16( 1, &AL_reg(context), 1);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment