Translated BaS copy routines to C.

Added functionality to flush caches before jumping into copied code
This commit is contained in:
Markus Fröschle
2012-10-14 10:34:18 +00:00
parent b49934f552
commit 01e20772c6
3 changed files with 98 additions and 20 deletions

9
sources/cache.h Normal file
View File

@@ -0,0 +1,9 @@
#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_ */