Updates and error message improvements.
[wine] / msdos / int29.c
1 /*
2  * DOS interrupt 29h handler
3  */
4
5 #include "config.h"
6
7 #include "winnt.h"
8
9 #include "console.h"
10 #include "miscemu.h"
11
12 /**********************************************************************
13  *          INT_Int29Handler
14  *
15  * Handler for int 29h (fast console output)
16  */
17 void WINAPI INT_Int29Handler( CONTEXT86 *context )
18 {
19    /* Yes, it seems that this is really all this interrupt does. */
20    CONSOLE_Write(AL_reg(context), 0, 0, 0);
21 }
22