10 lines
212 B
C
10 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 */
|