10 lines
139 B
C
10 lines
139 B
C
#ifndef _PAGING_H
|
|
#define _PAGING_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void paging_init(void);
|
|
void map_page(void* phys_addr, void* virt_addr);
|
|
|
|
#endif
|