mirror of
https://github.com/cowmonk/cowos.git
synced 2026-03-13 16:43:29 +00:00
12 lines
234 B
C
12 lines
234 B
C
|
|
#ifndef PAGING_H
|
||
|
|
#define PAGING_H
|
||
|
|
|
||
|
|
#include <limine.h>
|
||
|
|
|
||
|
|
volatile struct limine_hhdm_request hhdm_request;
|
||
|
|
volatile struct limine_kernel_address_request kernel_address_request;
|
||
|
|
|
||
|
|
void map_vga_memory(void);
|
||
|
|
|
||
|
|
#endif /* ifndef PAGING_H */
|