Author: hbelusca
Date: Fri Nov 1 01:51:15 2013
New Revision: 60815
URL:
http://svn.reactos.org/svn/reactos?rev=60815&view=rev
Log:
Fix a comment...
Modified:
branches/ntvdm/lib/fast486/common.c
Modified: branches/ntvdm/lib/fast486/common.c
URL:
http://svn.reactos.org/svn/reactos/branches/ntvdm/lib/fast486/common.c?rev=…
==============================================================================
--- branches/ntvdm/lib/fast486/common.c [iso-8859-1] (original)
+++ branches/ntvdm/lib/fast486/common.c [iso-8859-1] Fri Nov 1 01:51:15 2013
@@ -146,7 +146,7 @@
PageLength = PAGE_OFFSET(LinearAddress + Size);
}
- /* Read the entry */
+ /* Read the memory */
State->MemReadCallback(State,
(TableEntry.Address << 12) | PageOffset,
Buffer,
@@ -155,7 +155,7 @@
}
else
{
- /* Read the entry */
+ /* Read the memory */
State->MemReadCallback(State, LinearAddress, Buffer, Size);
}
@@ -260,7 +260,7 @@
PageLength = PAGE_OFFSET(LinearAddress + Size);
}
- /* Write the entry */
+ /* Write the memory */
State->MemWriteCallback(State,
(TableEntry.Address << 12) | PageOffset,
Buffer,
@@ -269,7 +269,7 @@
}
else
{
- /* Write the entry */
+ /* Write the memory */
State->MemWriteCallback(State, LinearAddress, Buffer, Size);
}