From 61397dbb07e13386ac91fb1133325851fdfe019d Mon Sep 17 00:00:00 2001 From: acheronfail Date: Thu, 18 Oct 2018 08:59:30 +1100 Subject: [PATCH] feedback: mention creating a new interrupts module --- blog/content/second-edition/posts/06-cpu-exceptions/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/content/second-edition/posts/06-cpu-exceptions/index.md b/blog/content/second-edition/posts/06-cpu-exceptions/index.md index 1b57b8c3..0d76dc61 100644 --- a/blog/content/second-edition/posts/06-cpu-exceptions/index.md +++ b/blog/content/second-edition/posts/06-cpu-exceptions/index.md @@ -204,7 +204,7 @@ If you are interested in more details: We also have a series of posts that expla [too-much-magic]: #too-much-magic ## Implementation -Now that we've understood the theory, it's time to handle CPU exceptions in our kernel. We start by creating an `init_idt` function that creates a new `InterruptDescriptorTable`: +Now that we've understood the theory, it's time to handle CPU exceptions in our kernel. We'll start by creating a new interrupts module in `src/interrupts.rs`, that first creates an `init_idt` function that creates a new `InterruptDescriptorTable`: ``` rust // in src/lib.rs