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
5b729dd6
Commit
5b729dd6
authored
Jan 03, 1999
by
Ove Kaaven
Committed by
Alexandre Julliard
Jan 03, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Emulates ins/outs correctly for DOS programs.
parent
0562539d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
instr.c
miscemu/instr.c
+2
-2
No files found.
miscemu/instr.c
View file @
5b729dd6
...
...
@@ -516,14 +516,14 @@ BOOL32 INSTR_EmulateInstruction( SIGCONTEXT *context )
void
*
data
;
if
(
outp
)
{
data
=
M
AKE_PTR
(
seg
,
data
=
M
K_PTR
(
context
,
seg
,
long_addr
?
ESI_sig
(
context
)
:
SI_sig
(
context
));
if
(
long_addr
)
ESI_sig
(
context
)
+=
step
;
else
SI_sig
(
context
)
+=
step
;
}
else
{
data
=
M
AKE_PTR
(
seg
,
data
=
M
K_PTR
(
context
,
seg
,
long_addr
?
EDI_sig
(
context
)
:
DI_sig
(
context
));
if
(
long_addr
)
EDI_sig
(
context
)
+=
step
;
else
DI_sig
(
context
)
+=
step
;
...
...
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