xref: /haiku/src/system/boot/platform/riscv/mmu.h (revision b5a859ad6285b14769a5ede7b81e4261044faf7e)
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