We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e85905f commit 6de7825Copy full SHA for 6de7825
src/kernel/interrupts/interrupts.asm
@@ -1,3 +1,5 @@
1
+%include "fuzzy/memmgr/layout.asm"
2
+
3
[BITS 32]
4
5
global interrupt_nohup
@@ -56,7 +58,7 @@ KERNEL_STACK_MARKER_NOTNEW EQU 0x10000000
56
58
; create new kernel stack
57
59
mov ebp, esp
60
mov ss, ax
- mov esp, 0xFFFC
61
+ mov esp, STACKINIT_KERNEL_EVENT
62
push ebp ; old esp ; ASSUME ss == ds
63
64
mov eax, KERNEL_STACK_MARKER_NEW
0 commit comments