diff options
Diffstat (limited to 'src/kernel/io')
-rw-r--r-- | src/kernel/io/io.c | 24 | ||||
-rw-r--r-- | src/kernel/io/io.h | 5 |
2 files changed, 29 insertions, 0 deletions
diff --git a/src/kernel/io/io.c b/src/kernel/io/io.c index 801a2fe..af5f008 100644 --- a/src/kernel/io/io.c +++ b/src/kernel/io/io.c @@ -74,6 +74,30 @@ void outl(u16 port, u32 data) asm volatile("outl %0, %1" ::"a"(data), "Nd"(port)); } +u32 cr3_get() +{ + u32 cr3; + asm volatile("movl %%cr3, %%eax" : "=a"(cr3)); + return cr3; +} + +void cr3_set(u32 cr3) +{ + asm volatile("movl %%eax, %%cr3" ::"a"(cr3)); +} + +u32 cr0_get() +{ + u32 cr0; + asm volatile("movl %%cr0, %%eax" : "=a"(cr0)); + return cr0; +} + +void cr0_set(u32 cr0) +{ + asm volatile("movl %%eax, %%cr0" ::"a"(cr0)); +} + void serial_install() { outb(0x3f8 + 1, 0x00); diff --git a/src/kernel/io/io.h b/src/kernel/io/io.h index b5573cc..ce3c72b 100644 --- a/src/kernel/io/io.h +++ b/src/kernel/io/io.h @@ -51,6 +51,11 @@ void outw(u16 port, u16 data); */ void outl(u16 port, u32 data); +u32 cr3_get(); +void cr3_set(u32 cr3); +u32 cr0_get(); +void cr0_set(u32 cr0); + /** * Initialize the serial conenction */ |