Removed references to obsolete configuration entries.
[wine] / dlls / winedos / int12.c
1 /*
2  * BIOS interrupt 12h handler
3  */
4
5 #include "dosexe.h"
6
7 /**********************************************************************
8  *         DOSVM_Int12Handler (WINEDOS16.118)
9  *
10  * Handler for int 12h (get memory size).
11  */
12 void WINAPI DOSVM_Int12Handler( CONTEXT86 *context )
13 {
14     SET_AX( context, 640 );
15 }