Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Yoann Laissus
wine
Commits
20a2c1e5
Commit
20a2c1e5
authored
26 years ago
by
Joseph Pranevich
Committed by
Alexandre Julliard
26 years ago
Browse files
Options
Downloads
Patches
Plain Diff
More interrupts that can be done from DOS mode.
parent
f990cfab
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/miscemu.h
+15
-0
15 additions, 0 deletions
include/miscemu.h
msdos/interrupts.c
+10
-0
10 additions, 0 deletions
msdos/interrupts.c
with
25 additions
and
0 deletions
include/miscemu.h
+
15
−
0
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
*
);
...
...
This diff is collapsed.
Click to expand it.
msdos/interrupts.c
+
10
−
0
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
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment