19 lines
244 B
C
19 lines
244 B
C
#ifndef _SYS_CACHECTL_H
|
|
#define _SYS_CACHECTL_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define ICACHE (1<<0)
|
|
#define DCACHE (1<<1)
|
|
#define BCACHE (ICACHE|DCACHE)
|
|
#define CACHEABLE 0
|
|
#define UNCACHEABLE 1
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|