From 7db9835611ca01818406bf6987cdf6b6b02a3e3b Mon Sep 17 00:00:00 2001 From: hailin cai Date: Tue, 1 Mar 2016 09:43:59 -0800 Subject: [PATCH] Update Booting/linux-bootstrap-1.md --- Booting/linux-bootstrap-1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Booting/linux-bootstrap-1.md b/Booting/linux-bootstrap-1.md index de73bef..61f636b 100644 --- a/Booting/linux-bootstrap-1.md +++ b/Booting/linux-bootstrap-1.md @@ -84,7 +84,7 @@ reset_vector: ... ``` -上面的跳转( [opcode](http://ref.x86asm.net/coder32.html#xE9) - 0xe9)跳转到地址 `_start - ( . + 2)` 去执行代码。 `reset` 段是16字节代码段, 起始于地址 +上面的跳转指令( [opcode](http://ref.x86asm.net/coder32.html#xE9) - 0xe9)跳转到地址 `_start - ( . + 2)` 去执行代码。 `reset` 段是16字节代码段, 起始于地址 `0xfffffff0`,因此 CPU 复位之后,就会跳到这个地址来执行相应的代码 : ```