Fixed Interrupts bug:

It was a problem about ports(cpu/ports.asm) functions.
This commit is contained in:
ice-bit
2019-07-06 00:32:41 +02:00
parent 3a0d674985
commit ba9feaba18
8 changed files with 26 additions and 9 deletions

View File

@@ -97,7 +97,7 @@ static void init_idt() {
__asm__ __volatile__ ("sti");
}
// Taken here: http://wiki.osdev.org/8259_PIC
// Taken from: http://wiki.osdev.org/8259_PIC
static void pic_remap(uint8_t offset1, uint8_t offset2) {
uint8_t a1, a2;