Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
f5a7f668
Commit
f5a7f668
authored
Apr 06, 2004
by
Florian Goth
Committed by
Alexandre Julliard
Apr 06, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some more stubs after examining the dosbox source code.
parent
03a4f568
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
2 deletions
+18
-2
int15.c
dlls/winedos/int15.c
+18
-2
No files found.
dlls/winedos/int15.c
View file @
f5a7f668
...
...
@@ -36,8 +36,8 @@ void WINAPI DOSVM_Int15Handler( CONTEXT86 *context )
switch
(
AH_reg
(
context
))
{
case
0x4f
:
/*catch keyboard*/
FIXME
(
"INT15: catch
keyboard not handled yet
\n
"
);
break
;
FIXME
(
"INT15: intercept
keyboard not handled yet
\n
"
);
break
;
case
0x83
:
/* start timer*/
switch
(
AL_reg
(
context
))
{
...
...
@@ -86,6 +86,15 @@ void WINAPI DOSVM_Int15Handler( CONTEXT86 *context )
SET_AX
(
context
,
64
);
/* FIXME: are 64K ok? */
RESET_CFLAG
(
context
);
break
;
case
0x89
:
/* Switch to protected mode*/
FIXME
(
"INT15: switching to protected mode not supported
\n
"
);
break
;
case
0x90
:
/* OS hook - Device busy*/
FIXME
(
"INT15: OS hook - device busy
\n
"
);
break
;
case
0x91
:
/* OS hook - Device post*/
FIXME
(
"INT15: OS hook - device post
\n
"
);
break
;
case
0xc0
:
/* GET CONFIGURATION */
if
(
ISV86
(
context
))
...
...
@@ -138,6 +147,13 @@ void WINAPI DOSVM_Int15Handler( CONTEXT86 *context )
INT_BARF
(
context
,
0x15
);
}
break
;
case
0xc3
:
/* set carry flag, so BorlandRTM doesn't assume a Vectra/PS2*/
FIXME
(
"INT15: 0xc3
\n
"
);
SET_AH
(
context
,
0x86
);
break
;
case
0xc4
:
/* BIOS POS Programm option select */
FIXME
(
"INT15: option 0xc4 not handled!
\n
"
);
break
;
default:
INT_BARF
(
context
,
0x15
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment