Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
cc96d67a
Commit
cc96d67a
authored
Mar 25, 2004
by
Florian Goth
Committed by
Alexandre Julliard
Mar 25, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stubs for a few functions.
parent
b400edb0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
0 deletions
+24
-0
int15.c
dlls/winedos/int15.c
+24
-0
No files found.
dlls/winedos/int15.c
View file @
cc96d67a
...
...
@@ -35,6 +35,20 @@ void WINAPI DOSVM_Int15Handler( CONTEXT86 *context )
{
switch
(
AH_reg
(
context
))
{
case
0x4f
:
/*catch keyboard*/
FIXME
(
"INT15: catch keyboard not handled yet
\n
"
);
break
;
case
0x83
:
/* start timer*/
switch
(
AL_reg
(
context
))
{
case
0x00
:
/* Start Timer*/
FIXME
(
"INT15: Start Timer not handled yet
\n
"
);
break
;
case
0x01
:
/* stop timer*/
FIXME
(
"INT15: Stop Timer not handled yet
\n
"
);
break
;
}
break
;
case
0x84
:
/* read joystick information */
FIXME
(
"Read joystick information not implemented
\n
"
);
...
...
@@ -57,6 +71,16 @@ void WINAPI DOSVM_Int15Handler( CONTEXT86 *context )
RESET_CFLAG
(
context
);
break
;
case
0x85
:
/* sysreq - key used*/
FIXME
(
"INT15: SysReq - Key not handled yet
\n
"
);
break
;
case
0x86
:
/* wait*/
FIXME
(
"INT15: Wait not correctly handled yet
\n
"
);
if
(
AL_reg
(
context
)
!=
0x00
)
ERR
(
"Invalid Input to Int15 function 0x86h AL != 0x00
\n
"
);
break
;
case
0x87
:
/* move memory regions*/
FIXME
(
"INT15: Move memory regions not implemented
\n
"
);
break
;
case
0x88
:
/* get size of memory above 1 M */
SET_AX
(
context
,
64
);
/* FIXME: are 64K ok? */
...
...
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