asm.h now can nuke the TLB by refreshing the PD. also changed some symbols to more accurately represent what they are for, such as the kernelspace page tables or the global PD.
11 lines
135 B
C
11 lines
135 B
C
#ifndef VIRTMEM_H
|
|
#define VIRTMEM_H
|
|
#include <stdint.h>
|
|
|
|
|
|
extern uint32_t global_page_dir;
|
|
extern uint32_t kernel_pagetable;
|
|
|
|
|
|
|
|
#endif
|