forked from Imagelibrary/rtems
* Makefile.am, configure.in: Added support for instruction cache enabling based on CPU model. * cache/.cvsignore, cache/Makefile.am, cache/cache.c, cache/cache_.h: New files.
20 lines
262 B
C
20 lines
262 B
C
/*
|
|
* Cache Management Support Routines for the MC68040
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#include <rtems.h>
|
|
#include "cache_.h"
|
|
|
|
|
|
#if defined(HAS_INSTRUCTION_CACHE)
|
|
|
|
void _CPU_cache_invalidate_entire_instruction ( void )
|
|
{
|
|
asm volatile ("flush");
|
|
}
|
|
#endif
|
|
|
|
/* end of file */
|