mirror of
https://github.com/cfenollosa/os-tutorial.git
synced 2024-10-27 20:34:19 +00:00
12 lines
235 B
C
12 lines
235 B
C
#include "../drivers/screen.h"
|
|
#include "util.h"
|
|
#include "../cpu/isr.h"
|
|
#include "../cpu/idt.h"
|
|
|
|
void main() {
|
|
isr_install();
|
|
/* Test the interrupts */
|
|
__asm__ __volatile__("int $2");
|
|
__asm__ __volatile__("int $3");
|
|
}
|