wine/msdos/int12.c
Alexandre Julliard 3fa613cf61 Moved internal context macros out of winnt.h.
Added SET_AX etc. macros to avoid non-portable pointer manipulations.
2002-08-31 18:47:00 +00:00

15 lines
301 B
C

/*
* BIOS interrupt 12h handler
*/
#include "miscemu.h"
/**********************************************************************
* INT_Int12Handler (WPROCS.118)
*
* Handler for int 12h (get memory size).
*/
void WINAPI INT_Int12Handler( CONTEXT86 *context )
{
SET_AX( context, 640 );
}