Copy bios device functions to kernel

This commit is contained in:
Byron Lathi
2023-09-04 14:31:55 -07:00
parent 791bffb248
commit a770d938de
12 changed files with 1071 additions and 0 deletions

11
sw/kernel/irq.c Normal file
View File

@@ -0,0 +1,11 @@
#include <stdint.h>
#include <conio.h>
#include "devices/interrupt.h"
#include "devices/uart.h"
void handle_irq() {
}