cowos

custom OS from scratch in C
git clone git://git.daat.foo/cowos.git
Log | Files | Refs | README | LICENSE

paging.h (234B)


      1 #ifndef PAGING_H
      2 #define PAGING_H
      3 
      4 #include <limine.h>
      5 
      6 volatile struct limine_hhdm_request hhdm_request;
      7 volatile struct limine_kernel_address_request kernel_address_request;
      8 
      9 void map_vga_memory(void);
     10 
     11 #endif /* ifndef PAGING_H */