mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
15 lines
191 B
C
15 lines
191 B
C
#ifndef __SYSTEM_H
|
|
#define __SYSTEM_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void flush_cpu_icache(void);
|
|
void flush_cpu_dcache(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __SYSTEM_H */
|