Added sequence to remap PIC

Wrote GDT code in C
Added routines to initialize GDT and IDT
This commit is contained in:
2021-04-16 01:45:40 -05:00
parent 8e6589b472
commit 6138766c49
7 changed files with 223 additions and 74 deletions

View File

@@ -1,5 +1,8 @@
#pragma once
__attribute__ ((interrupt))
void isr_generic(void* frame);
__attribute__ ((interrupt))
void isr_division_by_zero(void* frame);