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

📄 cache_.h

📁 RTEMS (Real-Time Executive for Multiprocessor Systems) is a free open source real-time operating sys
💻 H
字号:
/* *  M68K Cache Manager Support */#ifndef __M68K_CACHE_h#define __M68K_CACHE_h#if defined(__mc68020__)#define M68K_INSTRUCTION_CACHE_ALIGNMENT 16#elif defined(__mc68030__)#define M68K_INSTRUCTION_CACHE_ALIGNMENT 16#define M68K_DATA_CACHE_ALIGNMENT 16#elif ( defined(__mc68040__) || defined (__mc68060__) )#define M68K_INSTRUCTION_CACHE_ALIGNMENT 16#define M68K_DATA_CACHE_ALIGNMENT 16#endif#if defined(M68K_DATA_CACHE_ALIGNMENT)#define CPU_DATA_CACHE_ALIGNMENT M68K_DATA_CACHE_ALIGNMENT#endif#if defined(M68K_INSTRUCTION_CACHE_ALIGNMENT)#define CPU_INSTRUCTION_CACHE_ALIGNMENT M68K_INSTRUCTION_CACHE_ALIGNMENT#endif#include <libcpu/cache.h>#endif/* end of include file */

⌨️ 快捷键说明

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