mirror of
https://github.com/cfenollosa/os-tutorial.git
synced 2024-10-27 20:34:19 +00:00
14 lines
272 B
C
14 lines
272 B
C
#include "../cpu/isr.h"
|
|
#include "../cpu/timer.h"
|
|
#include "../drivers/keyboard.h"
|
|
|
|
void main() {
|
|
isr_install();
|
|
|
|
asm volatile("sti");
|
|
// init_timer(50);
|
|
/* Comment out the timer IRQ handler to read
|
|
* the keyboard IRQs easier */
|
|
init_keyboard();
|
|
}
|