projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Release 980517
[wine]
/
msdos
/
int12.c
1
/*
2
* BIOS interrupt 12h handler
3
*/
4
5
#include "miscemu.h"
6
7
/**********************************************************************
8
* INT_Int12Handler
9
*
10
* Handler for int 12h (get memory size).
11
*/
12
void WINAPI INT_Int12Handler( CONTEXT *context )
13
{
14
AX_reg(context) = 640;
15
}