Browse Source

Merge pull request #627 from eclissi91/fix-620

fixing typo in doc
0xAX 6 năm trước cách đây
mục cha
commit
b2fb661a81
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      Booting/linux-bootstrap-3.md

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

@@ -546,7 +546,7 @@ where:
 
 * `0x66` is the operand-size prefix which allows us to mix 16-bit and 32-bit code
 * `0xea` - is the jump opcode
-* `in_pm32` is the segment offset or `(cs << 4) + in_pm`
+* `in_pm32` is the segment offset under protect mode, which has value `(cs << 4) + in_pm32` derived from real mode
 * `__BOOT_CS` is the code segment we want to jump to.
 
 After this we are finally in protected mode: