diff options
Diffstat (limited to 'src/kernel/interact.asm')
-rw-r--r-- | src/kernel/interact.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/interact.asm b/src/kernel/interact.asm index 59fbfe7..e7d7e86 100644 --- a/src/kernel/interact.asm +++ b/src/kernel/interact.asm @@ -77,10 +77,10 @@ section .text pop fs ; load fs from 16bit stack pop es ; load es from 16bit stack pop ds ; load ds from 16bit stack - ; sti ; enable interrupts + ;sti ; enable interrupts db 0xCD ; opcode of INT instruction with immediate byte ib: db 0x00 - cli ; disable interrupts + ;cli ; disable interrupts xor sp, sp ; zero sp so we can reuse it mov ss, sp ; set ss so the stack is valid mov sp, INT32_BASE ; set correct stack position so we can copy back |