Documented GVF_SAVE_VAR alongside other flags, and removed a query/doubt
[AROS.git] / arch / arm-raspi / boot / include / mmu.h
blob6533d4b98969e1525c2fd9fb1619019dbffcad8b
1 /*
2 * mmu.h
4 * Created on: 08.04.2015
5 * Author: michal
6 */
8 #ifndef _MMU_H_
9 #define _MMU_H_
11 #include <stdint.h>
13 void mmu_init();
14 void mmu_load();
15 void mmu_unmap_section(uint32_t virt, uint32_t length);
16 void mmu_map_section(uint32_t phys, uint32_t virt, uint32_t length, int b, int c, int ap, int tex);
18 #endif /* _MMU_H_ */