diff options
author | Marvin Borner | 2020-01-16 17:15:53 +0100 |
---|---|---|
committer | Marvin Borner | 2020-01-16 17:15:53 +0100 |
commit | cd3ad989210dc8a3f5805dd5d4c4a6bd74e281db (patch) | |
tree | 015fa67057b1ca14a86a8faf4d1cabb0356467b2 /src/userspace/start.asm | |
parent | 602b98247e9c87e38870e39abf1d8b13aeae5d0f (diff) |
Quite a different approach to userspace paging
Hope this works soon!
Diffstat (limited to 'src/userspace/start.asm')
-rw-r--r-- | src/userspace/start.asm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/userspace/start.asm b/src/userspace/start.asm index 7348825..c6bb2a0 100644 --- a/src/userspace/start.asm +++ b/src/userspace/start.asm @@ -4,6 +4,4 @@ section .text global _start extern user_main _start: - mov esp, ebp - call user_main - jmp $
\ No newline at end of file + call user_main
\ No newline at end of file |