aboutsummaryrefslogtreecommitdiff
path: root/kernel/features/proc.asm
diff options
context:
space:
mode:
authorMarvin Borner2021-02-28 19:45:41 +0100
committerMarvin Borner2021-02-28 19:45:41 +0100
commit21522ad5f2fe55e633cd025e292537ca37e042fb (patch)
treeef195992681c69818e21ba2dd66d90af0d049b6f /kernel/features/proc.asm
parentd50d3aeaaeaca4a75a807759a54d1d6ae8b5bce4 (diff)
Kinda working paging
Diffstat (limited to 'kernel/features/proc.asm')
-rw-r--r--kernel/features/proc.asm6
1 files changed, 6 insertions, 0 deletions
diff --git a/kernel/features/proc.asm b/kernel/features/proc.asm
index 1a2ba65..dfc3448 100644
--- a/kernel/features/proc.asm
+++ b/kernel/features/proc.asm
@@ -28,3 +28,9 @@ proc_jump_userspace:
push dword [_eip]
iret
+
+global paging_invalidate_tlb
+paging_invalidate_tlb:
+ mov eax, cr3
+ mov cr3, eax
+ ret