From a95836d67d75e9d64b0b5cbf353d010dad501e63 Mon Sep 17 00:00:00 2001 From: garenchan <1412950785@qq.com> Date: Tue, 27 Nov 2018 20:25:57 +0800 Subject: [PATCH] irq_install() is placed on isr.c --- 21-shell/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21-shell/README.md b/21-shell/README.md index e1a0611..d4dc91a 100644 --- a/21-shell/README.md +++ b/21-shell/README.md @@ -18,7 +18,7 @@ Right now we have a `utils.c` which we will split into `mem.c` and `string.c`, w Second, we will create a new function `irq_install()` so that the kernel only needs to perform one call to initialize all the IRQs. That function -is akin to `isr_install()` and placed on the same `irq.c`. +is akin to `isr_install()` and placed on the same `isr.c`. While we're here, we will disable the `kprint()` on `timer_callback()` to avoid filling the screen with junk, now that we know that it works properly.