From 8bc5341197799dd58161e76c06d13cae989922e4 Mon Sep 17 00:00:00 2001 From: isometimes Date: Thu, 14 Oct 2021 18:21:29 +0100 Subject: [PATCH] Fixed typo --- part13-interrupts/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/part13-interrupts/README.md b/part13-interrupts/README.md index d3133c1..976a836 100644 --- a/part13-interrupts/README.md +++ b/part13-interrupts/README.md @@ -91,7 +91,7 @@ void handle_irq() { } ``` -As you can see, we're handling two different timer interrupts in this code. In fact, `handle_timer_1()` and `handler_timer_3()` are implemented in _kernel.c_ and serve to demonstrate that the timer has fired by incrementing a progress counter and updating a graphical representation of its value. Timer 3 is configured to progress at 4 times the speed of Timer 1. +As you can see, we're handling two different timer interrupts in this code. In fact, `handle_timer_1()` and `handle_timer_3()` are implemented in _kernel.c_ and serve to demonstrate that the timer has fired by incrementing a progress counter and updating a graphical representation of its value. Timer 3 is configured to progress at 4 times the speed of Timer 1. The interrupt controller ------------------------