aboutsummaryrefslogtreecommitdiff
path: root/libc/cpu.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/cpu.c')
-rw-r--r--libc/cpu.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/libc/cpu.c b/libc/cpu.c
index cb9aa49..8ca4d27 100644
--- a/libc/cpu.c
+++ b/libc/cpu.c
@@ -82,6 +82,13 @@ void cr0_set(u32 cr0)
__asm__ volatile("movl %%eax, %%cr0" ::"a"(cr0));
}
+u32 cr3_get(void)
+{
+ u32 cr3;
+ __asm__ volatile("movl %%cr0, %%eax" : "=a"(cr3));
+ return cr3;
+}
+
void cr3_set(u32 cr3)
{
__asm__ volatile("movl %%eax, %%cr3" ::"a"(cr3));