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 941017
[wine/gsoc-2012-control.git]
/
miscemu
/
int15.c
blob
3858e8f7f9ebace70311e2da06a3b0e5b3bc5824
1
#include <stdio.h>
2
#include <stdlib.h>
3
#include
"registers.h"
4
#include
"wine.h"
5
#include
"stddebug.h"
6
/* #define DEBUG_INT */
7
/* #undef DEBUG_INT */
8
#include
"debug.h"
9
10
void
IntBarf
(
int
i
,
struct
sigcontext_struct
*
context
);
11
12
int
do_int15
(
struct
sigcontext_struct
*
context
)
13
{
14
switch
(
AH
) {
15
case
0xc0
:
16
17
default
:
18
IntBarf
(
0x15
,
context
);
19
};
20
return
1
;
21
}