repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Documented GVF_SAVE_VAR alongside other flags, and removed a query/doubt
[AROS.git]
/
arch
/
arm-raspi
/
boot
/
include
/
mmu.h
blob
6533d4b98969e1525c2fd9fb1619019dbffcad8b
1
/*
2
* mmu.h
3
*
4
* Created on: 08.04.2015
5
* Author: michal
6
*/
7
8
#ifndef _MMU_H_
9
#define _MMU_H_
10
11
#include <stdint.h>
12
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
);
17
18
#endif
/* _MMU_H_ */