mirror of
https://github.com/reactos/wine.git
synced 2025-02-10 14:23:52 +00:00
![Alexandre Julliard](/assets/img/avatar_default.png)
context. Added #ifdef __i386__ around accesses to 386 registers in the generic CONTEXT structure.
16 lines
287 B
C
16 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;
|
|
}
|