1 /* 2 * Copyright 2021, Haiku, Inc. 3 * Distributed under the terms of the MIT License. 4 */ 5 6 7 #ifndef MMU_H 8 #define MMU_H 9 10 11 #include <SupportDefs.h> 12 13 14 extern uint8* gMemBase; 15 extern size_t gTotalMem; 16 17 18 void mmu_init(); 19 void mmu_init_for_kernel(); 20 21 22 #endif /* MMU_H */ 23