mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
9 lines
212 B
C
9 lines
212 B
C
#ifndef __SYSTEM_H
|
|
#define __SYSTEM_H
|
|
|
|
void flush_cpu_icache(void);
|
|
void flush_cpu_dcache(void);
|
|
__attribute__((noreturn)) void reboot(void);
|
|
__attribute__((noreturn)) void reconf(void);
|
|
|
|
#endif /* __SYSTEM_H */
|