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 940804
[wine/gsoc-2012-control.git]
/
miscemu
/
int16.c
blob
88ff49d4ce6fdfdf0df20c60a33064fd24bdc9ef
1
#include <stdio.h>
2
#include <stdlib.h>
3
#include
"msdos.h"
4
#include
"wine.h"
5
6
int
do_int16
(
struct
sigcontext_struct
*
context
)
7
{
8
switch
((
context
->
sc_eax
>>
8
) &
0xff
)
9
{
10
case
0xc0
:
11
12
default
:
13
IntBarf
(
0x16
,
context
);
14
};
15
return
1
;
16
}