radix: reading first page table entry
[soc.git] / src / soc / litex / system.h
1 #ifndef __SYSTEM_H
2 #define __SYSTEM_H
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
8 __attribute__((unused)) static void flush_cpu_icache(void){}; /* FIXME: do something useful here! */
9 __attribute__((unused)) static void flush_cpu_dcache(void){}; /* FIXME: do something useful here! */
10 void flush_l2_cache(void);
11
12 void busy_wait(unsigned int ms);
13
14 #ifdef __cplusplus
15 }
16 #endif
17
18 #endif /* __SYSTEM_H */