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