aboutsummaryrefslogtreecommitdiff
path: root/include/arch/i686/paging.h
blob: 04810693cb0eb7aad24a33f9afef4c3d3081c027 (plain)
1
2
3
4
5
6
7
8
#define PAGE_PRESENT (1<<0)
#define PAGE_RW      (1<<1)
#define PAGE_USER    (1<<2)

#define PAGE_MASK 0xFFFFF000
#define PAGE_SIZE     0x1000

void paging_init(void);