Subversion Repositories freemyipod

Rev

Rev 10 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 10 Rev 85
Line 25... Line 25...
25
#include "mmu.h"
25
#include "mmu.h"
26
 
26
 
27
 
27
 
28
void clean_dcache()
28
void clean_dcache()
29
{
29
{
-
 
30
    asm volatile(
-
 
31
        "MOV PC, LR                \n\t"
-
 
32
    );
30
}
33
}
31
 
34
 
32
void invalidate_dcache()
35
void invalidate_dcache()
33
{
36
{
-
 
37
    asm volatile(
-
 
38
        "MOV PC, LR                \n\t"
-
 
39
    );
-
 
40
}
-
 
41
void invalidate_icache()
-
 
42
{
-
 
43
    asm volatile(
-
 
44
        "MOV PC, LR                \n\t"
-
 
45
    );
34
}
46
}