bringelle/src/utils/paging.h

10 lines
171 B
C
Raw Normal View History

2021-04-11 20:53:06 +02:00
#ifndef PAGING_H
#define PAGING_H
#define PAGING_CR0_BIT 0x80000000
#define PAGING_DIR_LOCATION 0x1000
#define PAGING_TABLE_LOCATION 0x5000
void paging_enable();
#endif