repo.or.cz
/
wine
/
gsoc-2012-control.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Release 940815
[wine/gsoc-2012-control.git]
/
miscemu
/
int16.c
blob
33ecef58237ef0b467acb1a4ede9dec3d7e19e90
1
#include <stdio.h>
2
#include <stdlib.h>
3
#include
"registers.h"
4
#include
"wine.h"
5
6
int
do_int16
(
struct
sigcontext_struct
*
context
)
7
{
8
switch
(
AH
) {
9
case
0xc0
:
10
11
default
:
12
IntBarf
(
0x16
,
context
);
13
};
14
return
1
;
15
}