bringelle/src/core/paging.h

13 lines
209 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
2021-04-12 10:13:21 +02:00
/*
* Configure and enable paging
*/
2021-04-11 20:53:06 +02:00
void paging_enable();
#endif