Kernel: Clear DF on every interrupt handler

I was missing this and it lead to UB with my new mem* functions that
were implemented with `rep`
This commit is contained in:
2025-01-17 16:11:13 +02:00
parent 03b5c8e76e
commit 34775633b2
4 changed files with 12 additions and 1 deletions

View File

@@ -14,6 +14,7 @@ asm_syscall_handler:
pushl %edi
pushl %esi
pushl %ebp
cld
# align stack
movl %esp, %ebp