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
/
int2a.c
blob
ba25c2f44b2be3d9df9ec39e8b7e0014dae132c0
1
#include <stdio.h>
2
#include <stdlib.h>
3
#include
"msdos.h"
4
#include
"wine.h"
5
6
int
do_int2a
(
struct
sigcontext_struct
*
context
)
7
{
8
switch
((
context
->
sc_eax
>>
8
) &
0xff
)
9
{
10
case
0x00
:
/* NETWORK INSTALLATION CHECK */
11
break
;
12
13
default
:
14
IntBarf
(
0x2a
,
context
);
15
};
16
return
1
;
17
}