Fix a comment...

svn path=/branches/ntvdm/; revision=60815
This commit is contained in:
Hermès Bélusca-Maïto 2013-11-01 01:51:15 +00:00
parent 861776bd7e
commit f62b9a81d4

View file

@ -146,7 +146,7 @@ Fast486ReadMemory(PFAST486_STATE State,
PageLength = PAGE_OFFSET(LinearAddress + Size); PageLength = PAGE_OFFSET(LinearAddress + Size);
} }
/* Read the entry */ /* Read the memory */
State->MemReadCallback(State, State->MemReadCallback(State,
(TableEntry.Address << 12) | PageOffset, (TableEntry.Address << 12) | PageOffset,
Buffer, Buffer,
@ -155,7 +155,7 @@ Fast486ReadMemory(PFAST486_STATE State,
} }
else else
{ {
/* Read the entry */ /* Read the memory */
State->MemReadCallback(State, LinearAddress, Buffer, Size); State->MemReadCallback(State, LinearAddress, Buffer, Size);
} }
@ -260,7 +260,7 @@ Fast486WriteMemory(PFAST486_STATE State,
PageLength = PAGE_OFFSET(LinearAddress + Size); PageLength = PAGE_OFFSET(LinearAddress + Size);
} }
/* Write the entry */ /* Write the memory */
State->MemWriteCallback(State, State->MemWriteCallback(State,
(TableEntry.Address << 12) | PageOffset, (TableEntry.Address << 12) | PageOffset,
Buffer, Buffer,
@ -269,7 +269,7 @@ Fast486WriteMemory(PFAST486_STATE State,
} }
else else
{ {
/* Write the entry */ /* Write the memory */
State->MemWriteCallback(State, LinearAddress, Buffer, Size); State->MemWriteCallback(State, LinearAddress, Buffer, Size);
} }