Files
BaS_gcc/BaS_GNU/sources/cache.h
Markus Fröschle 0a6e68bf83 Translated BaS copy routines to C.
Added functionality to flush caches before jumping into copied code
2012-10-14 10:34:18 +00:00

10 lines
213 B
C

#ifndef _CACHE_H_
#define _CACHE_H_
#include <stdint.h>
extern void flushDataCacheRegion(void *adr, uint32_t length);
extern void flushInstructionCacheRegion(void *adr, uint32_t length);
#endif /* _CACHE_H_ */