mirror of
https://github.com/reactos/reactos.git
synced 2025-04-21 20:50:29 +00:00
[FAST486]
Put the conditional expression in parenthesis so that the addition happens after it. svn path=/branches/ntvdm/; revision=61063
This commit is contained in:
parent
37b16fec31
commit
9c999826e1
1 changed files with 2 additions and 2 deletions
|
@ -4919,8 +4919,8 @@ FAST486_OPCODE_HANDLER(Fast486OpcodeXlat)
|
||||||
/* Read a byte from DS:[(E)BX + AL] */
|
/* Read a byte from DS:[(E)BX + AL] */
|
||||||
if (!Fast486ReadMemory(State,
|
if (!Fast486ReadMemory(State,
|
||||||
FAST486_REG_DS,
|
FAST486_REG_DS,
|
||||||
AddressSize ? State->GeneralRegs[FAST486_REG_EBX].Long
|
(AddressSize ? State->GeneralRegs[FAST486_REG_EBX].Long
|
||||||
: State->GeneralRegs[FAST486_REG_EBX].LowWord
|
: State->GeneralRegs[FAST486_REG_EBX].LowWord)
|
||||||
+ State->GeneralRegs[FAST486_REG_EAX].LowByte,
|
+ State->GeneralRegs[FAST486_REG_EAX].LowByte,
|
||||||
FALSE,
|
FALSE,
|
||||||
&Value,
|
&Value,
|
||||||
|
|
Loading…
Reference in a new issue