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
20a2c1e5
Commit
20a2c1e5
authored
Oct 17, 1998
by
Joseph Pranevich
Committed by
Alexandre Julliard
Oct 17, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More interrupts that can be done from DOS mode.
parent
f990cfab
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
0 deletions
+25
-0
miscemu.h
include/miscemu.h
+15
-0
interrupts.c
msdos/interrupts.c
+10
-0
No files found.
include/miscemu.h
View file @
20a2c1e5
...
...
@@ -46,6 +46,15 @@ extern void IO_outport( int port, int count, DWORD value );
/* msdos/int10.c */
extern
void
WINAPI
INT_Int10Handler
(
CONTEXT
*
);
/* msdos/int10.c */
extern
void
WINAPI
INT_Int10Handler
(
CONTEXT
*
);
/* msdos/int11.c */
extern
void
WINAPI
INT_Int11Handler
(
CONTEXT
*
);
/* msdos/int16.c */
extern
void
WINAPI
INT_Int16Handler
(
CONTEXT
*
);
/* msdos/int1a.c */
extern
DWORD
INT1A_GetTicksSinceMidnight
(
void
);
extern
void
WINAPI
INT_Int1aHandler
(
CONTEXT
*
);
...
...
@@ -56,6 +65,12 @@ extern void WINAPI INT_Int20Handler(CONTEXT*);
/* msdos/int25.c */
extern
void
WINAPI
INT_Int25Handler
(
CONTEXT
*
);
/* msdos/int29.c */
extern
void
WINAPI
INT_Int29Handler
(
CONTEXT
*
);
/* msdos/int25.c */
extern
void
WINAPI
INT_Int25Handler
(
CONTEXT
*
);
/* msdos/int2f.c */
extern
void
WINAPI
INT_Int2fHandler
(
CONTEXT
*
);
...
...
msdos/interrupts.c
View file @
20a2c1e5
...
...
@@ -108,6 +108,12 @@ int INT_RealModeInterrupt( BYTE intnum, PCONTEXT context )
case
0x10
:
INT_Int10Handler
(
context
);
break
;
case
0x11
:
INT_Int11Handler
(
context
);
break
;
case
0x16
:
INT_Int16Handler
(
context
);
break
;
case
0x1a
:
INT_Int1aHandler
(
context
);
break
;
...
...
@@ -126,9 +132,13 @@ int INT_RealModeInterrupt( BYTE intnum, PCONTEXT context )
case
0x31
:
INT_Int31Handler
(
context
);
break
;
case
0x29
:
INT_Int29Handler
(
context
);
break
;
default:
FIXME
(
int
,
"Unknown Interrupt in DOS mode: 0x%x
\n
"
,
intnum
);
return
1
;
}
FIXME
(
int
,
"Unknown Interrupt in DOS mode: 0x%x
\n
"
,
intnum
);
return
0
;
}
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