- Moved comm related protoypes to the correct .h file.
[wine/wine-kai.git] / msdos / int29.c
blob8ffaa56c80242c615f503be0c2df0e3d3a38c86b
1 /*
2 * DOS interrupt 29h handler
3 */
5 #include "config.h"
7 #include "winnt.h"
9 #include "console.h"
10 #include "miscemu.h"
12 /**********************************************************************
13 * INT_Int29Handler
15 * Handler for int 29h (fast console output)
17 void WINAPI INT_Int29Handler( CONTEXT86 *context )
19 /* Yes, it seems that this is really all this interrupt does. */
20 CONSOLE_Write(AL_reg(context), 0, 0, 0);