fix: no more looping on some weird input

This commit is contained in:
2024-10-09 16:16:22 +02:00
parent f3db3060af
commit 1640b2e125
2 changed files with 6 additions and 3 deletions

View File

@ -45,5 +45,5 @@ void init_idt(void)
for (uint8_t j = 0; j < 16; j++)
idt_set_descriptor(i + j, irq_stub_table[j], 0x8E);
load_idt(&idtr);
asm volatile("sti");
__asm__ volatile("sti");
}