From efd89025822eabcca3138404470db54688a16256 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Sat, 25 Jun 2011 17:58:47 +0000 Subject: [PATCH] [BOOTSECTOR] Fix a typo in a comment svn path=/trunk/; revision=52459 --- reactos/boot/freeldr/bootsect/fat.S | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reactos/boot/freeldr/bootsect/fat.S b/reactos/boot/freeldr/bootsect/fat.S index 03d7ecc8e41..ef3912a9ed0 100644 --- a/reactos/boot/freeldr/bootsect/fat.S +++ b/reactos/boot/freeldr/bootsect/fat.S @@ -207,12 +207,12 @@ SearchRootDirSector: 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 @@ FoundFreeLoader: // 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.