2000-11-27 Joel Sherrill <joel@OARcorp.com>

* cache/cache.h: Fix reference to MC68040 and put in stubs
	for missing support routines.  The functionality of these
	routines needs to be addressed.
This commit is contained in:
Joel Sherrill
2000-11-27 17:02:39 +00:00
parent 9ad0087105
commit a0488a4471
2 changed files with 25 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
2000-11-27 Joel Sherrill <joel@OARcorp.com>
* cache/cache.h: Fix reference to MC68040 and put in stubs
for missing support routines. The functionality of these
routines needs to be addressed.
2000-11-14 Jiri Gaisler <jgais@ws.estec.esa.nl>
* Makefile.am, configure.in: Added support for instruction

View File

@@ -1,5 +1,5 @@
/*
* Cache Management Support Routines for the MC68040
* Cache Management Support Routines for the SPARC
*
* $Id$
*/
@@ -14,6 +14,23 @@ void _CPU_cache_invalidate_entire_instruction ( void )
{
asm volatile ("flush");
}
#endif
/* XXX these need to be addressed */
void _CPU_cache_freeze_instruction ( void )
{
}
void _CPU_cache_unfreeze_instruction ( void )
{
}
void _CPU_cache_enable_instruction ( void )
{
}
void _CPU_cache_disable_instruction ( void )
{
}
#endif
/* end of file */