From 7a998dda4d498dc66c7c3a2a5194a9d20e6b15b5 Mon Sep 17 00:00:00 2001 From: apio Date: Tue, 4 Oct 2022 18:45:46 +0200 Subject: [PATCH] Kernel: Do not stop interrupts by default in the interrupt handler I always knew you can choose if interrupts are enabled for a specific ISR in the IDT entry, but at some moment there was a bug and I thought maybe that fixed it. Now reverting that doesn't break anything, so... let's do it :) --- kernel/src/interrupts/InterruptEntry.asm | 1 - 1 file changed, 1 deletion(-) diff --git a/kernel/src/interrupts/InterruptEntry.asm b/kernel/src/interrupts/InterruptEntry.asm index ab81f07b..7ee280e0 100644 --- a/kernel/src/interrupts/InterruptEntry.asm +++ b/kernel/src/interrupts/InterruptEntry.asm @@ -40,7 +40,6 @@ extern common_handler section .text global asm_common asm_common: - cli cld push rax push rbx