This repository has been archived on 2024-01-18. You can view files and clone it, but cannot push or open issues or pull requests.

16 lines
326 B
C
Raw Normal View History

2023-09-11 14:28:11 -04:00
#include "../cpu/isr.h"
#include "../cpu/timer.h"
#include "../drivers/keyboard.h"
void _start() {
isr_install();
asm volatile("sti");
2023-09-15 11:36:42 -04:00
/* init_timer(50); */
/* init_timer(1000); */
init_timer(10);
2023-09-11 14:28:11 -04:00
/* Comment out the timer IRQ handler to read
* the keyboard IRQs easier */
init_keyboard();
}