Files
rtems/c/src/lib/libcpu/sparc/cache/cache_.h
Joel Sherrill ca4060826d 2000-11-14 Jiri Gaisler <jgais@ws.estec.esa.nl>
* 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.
2000-11-15 21:40:05 +00:00

25 lines
530 B
C

/*
* SPARC Cache Manager Support
*/
#ifndef __SPARC_CACHE_h
#define __SPARC_CACHE_h
/*
* CACHE MANAGER: The following functions are CPU-specific.
* They provide the basic implementation for the rtems_* cache
* management routines. If a given function has no meaning for the CPU,
* it does nothing by default.
*
* FIXME: Some functions simply have not been implemented.
*/
#if defined(HAS_INSTRUCTION_CACHE)
#define CPU_INSTRUCTION_CACHE_ALIGNMENT 0
#endif
#include <libcpu/cache.h>
#endif
/* end of include file */