浏览代码

Update linux-bootstrap-1.md

Fixed small typo (megabite -> megabyte)
ecksun 10 年之前
父节点
当前提交
569a896775
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      linux-bootstrap-1.md

+ 1 - 1
linux-bootstrap-1.md

@@ -52,7 +52,7 @@ But if we take the biggest segment part and offset: `0xffff:0xffff`, it will be:
 '0x10ffef'
 ```
 
-which is 65519 bytes over first megabyte. Since only one megabite accessible in real mode, `0x10ffef` becomes `0x00ffef` with disabled [A20](http://en.wikipedia.org/wiki/A20_line).
+which is 65519 bytes over first megabyte. Since only one megabyte accessible in real mode, `0x10ffef` becomes `0x00ffef` with disabled [A20](http://en.wikipedia.org/wiki/A20_line).
 
 Ok, now we know about real mode and memory addressing, let's back to registers values after reset.