Added device type constants and used them in device enumeration
[wine.git] / msdos / int29.c
blob52eba9df2db78c4e79368790c95395ae97900c68
1 /*
2 * DOS interrupt 29h handler
3 */
5 #include <stdlib.h>
6 #include <string.h>
7 #include <unistd.h>
9 #include "ldt.h"
10 #include "drive.h"
11 #include "msdos.h"
12 #include "miscemu.h"
13 #include "module.h"
15 /**********************************************************************
16 * INT_Int29Handler
18 * Handler for int 29h (fast console output)
20 void WINAPI INT_Int29Handler( CONTEXT *context )
22 /* Yes, it seems that this is really all this interrupt does. */
23 _lwrite16( 1, &AL_reg(context), 1);