Skip to content
Snippets Groups Projects
int12.c 300 B
Newer Older
Alexandre Julliard's avatar
Alexandre Julliard committed
/*
 * BIOS interrupt 12h handler
 */

#include "miscemu.h"

/**********************************************************************
 *	    INT_Int12Handler (WPROCS.118)
Alexandre Julliard's avatar
Alexandre Julliard committed
 *
 * Handler for int 12h (get memory size).
 */
void WINAPI INT_Int12Handler( CONTEXT86 *context )
Alexandre Julliard's avatar
Alexandre Julliard committed
{
    AX_reg(context) = 640;
}