Fix typos in 06 and 07 posts. (#487)

This commit is contained in:
Donald Pinckney
2018-10-25 08:27:37 -04:00
committed by Philipp Oppermann
parent 7df441c014
commit 1ed19359b5
2 changed files with 2 additions and 2 deletions

View File

@@ -221,7 +221,7 @@ pub fn init_idt() {
}
```
Now we can add handler functions. We start by adding a handler for the [breakpoint exception]. The breakpoint exception is the perfect exception to test exception handling. Its only purpose is to temporary pause a program when the breakpoint instruction `int3` is executed.
Now we can add handler functions. We start by adding a handler for the [breakpoint exception]. The breakpoint exception is the perfect exception to test exception handling. Its only purpose is to temporarily pause a program when the breakpoint instruction `int3` is executed.
[breakpoint exception]: http://wiki.osdev.org/Exceptions#Breakpoint