2012-02-03 06:08:17 -05:00
|
|
|
#ifndef __SYSTEM_H
|
|
|
|
#define __SYSTEM_H
|
|
|
|
|
2013-03-25 09:38:58 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2012-02-03 06:08:17 -05:00
|
|
|
void flush_cpu_icache(void);
|
|
|
|
void flush_cpu_dcache(void);
|
2013-11-16 10:27:21 -05:00
|
|
|
void flush_l2_cache(void);
|
2013-03-25 09:38:58 -04:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2012-02-03 06:08:17 -05:00
|
|
|
|
|
|
|
#endif /* __SYSTEM_H */
|