9
0
Fork 0

svn_rev_685

This commit is contained in:
Sascha Hauer 2007-07-05 18:02:17 +02:00 committed by Sascha Hauer
parent 22274d77a7
commit 31d3ca0354
1 changed files with 14 additions and 0 deletions

14
include/cache.h Normal file
View File

@ -0,0 +1,14 @@
#ifndef __CACHE_H
#define __CACHE_H
void flush_cache (unsigned long, unsigned long);
int icache_status (void);
void icache_enable (void);
void icache_disable(void);
int dcache_status (void);
void dcache_enable (void);
void dcache_disable(void);
int checkicache (void);
int checkdcache (void);
#endif /* __CACHE_H */