source: rtems/c/src/lib/libcpu/sparc/cache/cache.c @ a0488a4

4.104.114.84.95
Last change on this file since a0488a4 was a0488a4, checked in by Joel Sherrill <joel.sherrill@…>, on 11/27/00 at 17:02:39

2000-11-27 Joel Sherrill <joel@…>

  • cache/cache.h: Fix reference to MC68040 and put in stubs for missing support routines. The functionality of these routines needs to be addressed.
  • Property mode set to 100644
File size: 498 bytes
Line 
1/*
2 *  Cache Management Support Routines for the SPARC
3 *
4 *  $Id$
5 */
6
7#include <rtems.h>
8#include "cache_.h"
9
10
11#if defined(HAS_INSTRUCTION_CACHE)
12
13void _CPU_cache_invalidate_entire_instruction ( void )
14{
15  asm volatile ("flush");
16}
17
18/* XXX these need to be addressed */
19void _CPU_cache_freeze_instruction ( void )
20{
21}
22
23void _CPU_cache_unfreeze_instruction ( void )
24{
25}
26
27void _CPU_cache_enable_instruction ( void )
28{
29}
30
31void _CPU_cache_disable_instruction (   void )
32{
33}
34
35#endif
36/* end of file */
Note: See TracBrowser for help on using the repository browser.