Author: tkreuzer
Date: Sat Jun 25 17:58:47 2011
New Revision: 52459
URL:
http://svn.reactos.org/svn/reactos?rev=52459&view=rev
Log:
[BOOTSECTOR]
Fix a typo in a comment
Modified:
trunk/reactos/boot/freeldr/bootsect/fat.S
Modified: trunk/reactos/boot/freeldr/bootsect/fat.S
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/bootsect/fat.…
==============================================================================
--- trunk/reactos/boot/freeldr/bootsect/fat.S [iso-8859-1] (original)
+++ trunk/reactos/boot/freeldr/bootsect/fat.S [iso-8859-1] Sat Jun 25 17:58:47 2011
@@ -207,12 +207,12 @@
FoundFreeLoader:
// We found freeldr.sys on the disk
// so we need to load the first 512
- // bytes of it to 0000:8000
+ // bytes of it to 0000:F800
// ES:DI has dir entry (ES:DI == 07E0:XXXX)
mov ax, word ptr es:[di + HEX(1a)] // Get start cluster
push ax // Save start cluster
push FREELDR_BASE / 16 // Put load segment on the stack and load it
- pop es // Into ES so that we load the cluster at 0000:8000
+ pop es // Into ES so that we load the cluster at 0000:F800
call ReadCluster // Read the cluster
pop ax // Restore start cluster of FreeLoader
@@ -224,7 +224,7 @@
// Now AX has start cluster of FreeLoader and we
// have loaded the helper code in the first 512 bytes
- // of FreeLoader to 0000:8000. Now transfer control
+ // of FreeLoader to 0000:F800. Now transfer control
// to the helper code. Skip the first three bytes
// because they contain a jump instruction to skip
// over the helper code in the FreeLoader image.