From cfd0ef8d06448cb0a487378877c41e89aba0e43f Mon Sep 17 00:00:00 2001 From: eebop <68796004+eebop@users.noreply.github.com> Date: Fri, 23 Apr 2021 16:53:41 -0700 Subject: [PATCH] Fix typo --- 18-interrupts/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/18-interrupts/README.md b/18-interrupts/README.md index db560b3..25dc993 100644 --- a/18-interrupts/README.md +++ b/18-interrupts/README.md @@ -62,7 +62,7 @@ On `cpu/isr.h` we define 32 of them, manually. They are declared as Before jumping to the assembler code, check out `cpu/isr.c`. As you can see, we define a function to install all isrs at once and load the IDT, a list of error -messages, and the high level handler, which kprints some information. You +messages, and the high level handler, which prints some information. You can customize `isr_handler` to print/do whatever you want. Now to the low level which glues every `idt_gate` with its low-level and