repo.or.cz
/
wine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Removed superfluous GlobalFindAtom calls.
[wine.git]
/
msdos
/
int12.c
blob
2fd7e1c042c630a1ed1a062b9495e1d68b4b5c36
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
(
CONTEXT86
*
context
)
13
{
14
AX_reg
(
context
) =
640
;
15
}