mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 21:04:06 +00:00
e983652363
winedos private files. Removed the msdos.h header.
15 lines
311 B
C
15 lines
311 B
C
/*
|
|
* BIOS interrupt 12h handler
|
|
*/
|
|
|
|
#include "dosexe.h"
|
|
|
|
/**********************************************************************
|
|
* DOSVM_Int12Handler (WINEDOS16.118)
|
|
*
|
|
* Handler for int 12h (get memory size).
|
|
*/
|
|
void WINAPI DOSVM_Int12Handler( CONTEXT86 *context )
|
|
{
|
|
SET_AX( context, 640 );
|
|
}
|