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
15aedbc6
Commit
15aedbc6
authored
26 years ago
by
Jess Haas
Committed by
Alexandre Julliard
26 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Added stub for int2f 4b.
parent
d604b4bd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
msdos/int2f.c
+14
-0
14 additions, 0 deletions
msdos/int2f.c
with
14 additions
and
0 deletions
msdos/int2f.c
+
14
−
0
View file @
15aedbc6
...
...
@@ -173,6 +173,20 @@ void WINAPI INT_Int2fHandler( CONTEXT *context )
INT_BARF
(
context
,
0x2f
);
}
break
;
case
0x4b
:
switch
(
AL_reg
(
context
))
{
case
0x01
:
case
0x02
:
case
0x03
:
case
0x04
:
case
0x05
:
FIXME
(
int
,
"Task Switcher - not implemented
\n
"
);
break
;
default:
INT_BARF
(
context
,
0x2f
);
}
break
;
case
0x56
:
/* INTERLNK */
switch
(
AL_reg
(
context
))
{
...
...
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