⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cache.c

📁 RTEMS (Real-Time Executive for Multiprocessor Systems) is a free open source real-time operating sys
💻 C
字号:
/* *  Cache Management Support Routines for the SPARC * *  $Id: cache.c,v 1.2 2000/11/27 17:02:39 joel Exp $ */#include <rtems.h>#include "cache_.h"#if defined(HAS_INSTRUCTION_CACHE)void _CPU_cache_invalidate_entire_instruction ( void ){  asm volatile ("flush");}/* 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 */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -