mirror of
https://github.com/reactos/reactos.git
synced 2025-05-20 17:45:06 +00:00
[FAST486]: Fix OUT instruction (IoWrite instead of IoRead).
svn path=/branches/ntvdm/; revision=60893
This commit is contained in:
parent
43ee57f2f7
commit
aab2a03dc2
1 changed files with 1 additions and 1 deletions
|
@ -1041,7 +1041,7 @@ FAST486_OPCODE_HANDLER(Fast486OpcodeOut)
|
|||
ULONG Data = State->GeneralRegs[FAST486_REG_EAX].Long;
|
||||
|
||||
/* Write a dword to the I/O port */
|
||||
State->IoReadCallback(State, Port, &Data, 1, sizeof(ULONG));
|
||||
State->IoWriteCallback(State, Port, &Data, 1, sizeof(ULONG));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue