mirror of
https://github.com/cfenollosa/os-tutorial.git
synced 2024-10-27 20:34:19 +00:00
10 lines
132 B
C
10 lines
132 B
C
#include "../cpu/isr.h"
|
|
#include "../cpu/timer.h"
|
|
|
|
void main() {
|
|
isr_install();
|
|
|
|
asm volatile("sti");
|
|
init_timer(50);
|
|
}
|