Boot framework rework (#45)
[lunaix-os.git] / lunaix-os / arch / generic / mm / mm.c
1 #include <lunaix/mm/pagetable.h>
2 #include <lunaix/mm/page.h>
3
4 struct leaflet*
5 dup_leaflet(struct leaflet* leaflet)
6 {
7     fail("unimplemented");
8 }
9
10 void
11 pmm_arch_init_pool(struct pmem* memory)
12 {
13     fail("unimplemented");
14 }
15
16 ptr_t
17 pmm_arch_init_remap(struct pmem* memory, struct boot_handoff* bctx)
18 {
19     fail("unimplemented");
20 }