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

📄 cache_.h

📁 RTEMS (Real-Time Executive for Multiprocessor Systems) is a free open source real-time operating sys
💻 H
字号:
/* *  PowerPC Cache Manager Support */#ifndef __POWERPC_CACHE_h#define __POWERPC_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(ppc603)                     /* And possibly others */#define CPU_DATA_CACHE_ALIGNMENT PPC_CACHE_ALIGNMENT#define CPU_INSTRUCTION_CACHE_ALIGNMENT PPC_CACHE_ALIGNMENT#elif ( defined(mpc860) || defined(mpc821) )#define CPU_DATA_CACHE_ALIGNMENT PPC_CACHE_ALIGNMENT#define CPU_INSTRUCTION_CACHE_ALIGNMENT PPC_CACHE_ALIGNMENT#endif#include <libcpu/cache.h>#endif/* end of include file */

⌨️ 快捷键说明

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