blob: 1ba5e89ca32f2cbe13ca28b7b94c8df3b9e02996 [file] [log] [blame]
/*
* BIOS interrupt 12h handler
*/
#include "miscemu.h"
/**********************************************************************
* INT_Int12Handler (WPROCS.118)
*
* Handler for int 12h (get memory size).
*/
void WINAPI INT_Int12Handler( CONTEXT86 *context )
{
AX_reg(context) = 640;
}