summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/sparc/cache/cache.c
blob: d0b2fc509612ed0127b37cf6cd838985740a2747 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 *  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 */