diff options
author | Marvin Borner | 2019-11-30 21:07:22 +0100 |
---|---|---|
committer | Marvin Borner | 2019-11-30 21:07:22 +0100 |
commit | 50f949d994c33ab23d63bdb9e8a438560ab0b4c4 (patch) | |
tree | 35089087979bd8cee4693c71264b1c537336e4dd /src/kernel/boot.asm | |
parent | ac947d45c288f62e927895afe7cd6a722ffdd8f8 (diff) |
Working userspace!
Diffstat (limited to 'src/kernel/boot.asm')
-rw-r--r-- | src/kernel/boot.asm | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/kernel/boot.asm b/src/kernel/boot.asm index 28e3c38..fc5a859 100644 --- a/src/kernel/boot.asm +++ b/src/kernel/boot.asm @@ -36,10 +36,10 @@ section .text %include "src/kernel/interact.asm" - global switch_to_user - extern test_user - switch_to_user: - sti + global jump_userspace + jump_userspace: + mov ebx, dword [esp+4] + mov ax, 0x23 mov ds, ax mov es, ax @@ -50,8 +50,10 @@ section .text push 0x23 push eax pushf + push 0x1B - push test_user + push ebx + mov ebp, ebx iret section .end_section |