mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 20:18:28 +00:00
617955db88
context. Added #ifdef __i386__ around accesses to 386 registers in the generic CONTEXT structure.
15 lines
287 B
C
15 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;
|
|
}
|