From 005551efc87dec3b57776bba13fd8bba09d103d5 Mon Sep 17 00:00:00 2001 From: Steve Kemp Date: Mon, 22 Oct 2018 21:41:57 +0300 Subject: [PATCH] Fix typo (#484) Fixed `interrups` -> `interrupts`. --- .../second-edition/posts/08-hardware-interrupts/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/content/second-edition/posts/08-hardware-interrupts/index.md b/blog/content/second-edition/posts/08-hardware-interrupts/index.md index 6b01fe4f..3a18bb91 100644 --- a/blog/content/second-edition/posts/08-hardware-interrupts/index.md +++ b/blog/content/second-edition/posts/08-hardware-interrupts/index.md @@ -6,7 +6,7 @@ date = 2018-10-22 template = "second-edition/page.html" +++ -In this post we set up the programmable interrupt controller to correctly forward hardware interrupts to the CPU. To handle these interrups we add new entries to our interrupt descriptor table, just like we did for our exception handlers. We will learn how to get periodic timer interrupts and how to get input from the keyboard. +In this post we set up the programmable interrupt controller to correctly forward hardware interrupts to the CPU. To handle these interrupts we add new entries to our interrupt descriptor table, just like we did for our exception handlers. We will learn how to get periodic timer interrupts and how to get input from the keyboard.