瀏覽代碼

Merge pull request #456 from amreo/patch-1

Fix math error
0xAX 8 年之前
父節點
當前提交
2036068293
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Booting/linux-bootstrap-1.md

+ 1 - 1
Booting/linux-bootstrap-1.md

@@ -234,7 +234,7 @@ X+08000  +------------------------+
 So, when the bootloader transfers control to the kernel, it starts at:
 
 ```
-0x1000 + X + sizeof(KernelBootSector) + 1
+X + sizeof(KernelBootSector) + 1
 ```
 
 where `X` is the address of the kernel boot sector being loaded. In my case, `X` is `0x10000`, as we can see in a memory dump: