mirror of
https://github.com/isometimes/rpi4-osdev
synced 2024-11-08 19:30:39 +00:00
Fixed typo
This commit is contained in:
parent
e34406f44f
commit
8bc5341197
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
------------------------
|
||||
|
|
Loading…
Reference in a new issue