diff options
Diffstat (limited to 'src/kernel/boot.asm')
-rw-r--r-- | src/kernel/boot.asm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/kernel/boot.asm b/src/kernel/boot.asm index fc5a859..8241786 100644 --- a/src/kernel/boot.asm +++ b/src/kernel/boot.asm @@ -50,11 +50,17 @@ section .text push 0x23 push eax pushf + pop eax + or eax, 0x200 + push eax push 0x1B + push ebx mov ebp, ebx iret + pop ebp + ret section .end_section global ASM_KERNEL_END |