wine/msdos/int12.c
Alexandre Julliard 617955db88 Changed CONTEXT into CONTEXT86 everywhere we really want an i386
context.
Added #ifdef __i386__ around accesses to 386 registers in the generic
CONTEXT structure.
1999-06-26 18:40:24 +00:00

16 lines
287 B
C

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