mirror of
https://github.com/reactos/wine.git
synced 2024-11-28 22:20:26 +00:00
Added int29 (Fast Write to Screen) support.
This commit is contained in:
parent
7bcf341a64
commit
f990cfab29
25
msdos/int29.c
Normal file
25
msdos/int29.c
Normal file
@ -0,0 +1,25 @@
|
||||
/*
|
||||
* 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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user