Removed unnecessary word (#765)

Removed the word "executes" from "The CPU executes tries to write to `0xdeadbeef`, which causes a page fault."
This commit is contained in:
Patrick
2020-03-11 13:07:22 +01:00
committed by GitHub
parent e84b6f4084
commit aeafe57c5d

View File

@@ -97,7 +97,7 @@ When we start our kernel now, we should see that the double fault handler is inv
It worked! Here is what happens this time: It worked! Here is what happens this time:
1. The CPU executes tries to write to `0xdeadbeef`, which causes a page fault. 1. The CPU tries to write to `0xdeadbeef`, which causes a page fault.
2. Like before, the CPU looks at the corresponding entry in the IDT and sees that no handler function is defined. Thus, a double fault occurs. 2. Like before, the CPU looks at the corresponding entry in the IDT and sees that no handler function is defined. Thus, a double fault occurs.
3. The CPU jumps to the now present double fault handler. 3. The CPU jumps to the now present double fault handler.