repo.or.cz
/
wine
/
multimedia.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Made more cross-platform by changing ->_fileno to fileno().
[wine/multimedia.git]
/
msdos
/
int19.c
blob
44d9f6963d695d5a32deac7d249a474eef28eace
1
/*
2
* BIOS interrupt 19h handler
3
*/
4
5
#include <stdlib.h>
6
#include
"miscemu.h"
7
#include
"debug.h"
8
9
10
/**********************************************************************
11
* INT_Int19Handler
12
*
13
* Handler for int 19h (Reboot).
14
*/
15
void
WINAPI
INT_Int19Handler
(
CONTEXT
*
context
)
16
{
17
WARN
(
int19
,
"Attempted Reboot
\n
"
);
18
}