14 lines
272 B
C
14 lines
272 B
C
|
#include "../cpu/isr.h"
|
||
|
#include "../cpu/timer.h"
|
||
|
#include "../drivers/keyboard.h"
|
||
|
|
||
|
void _start() {
|
||
|
isr_install();
|
||
|
|
||
|
asm volatile("sti");
|
||
|
init_timer(50);
|
||
|
/* Comment out the timer IRQ handler to read
|
||
|
* the keyboard IRQs easier */
|
||
|
init_keyboard();
|
||
|
}
|