cache_.h

来自「RTEMS (Real-Time Executive for Multiproc」· C头文件 代码 · 共 30 行

H
30
字号
/* *  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 + =
减小字号Ctrl + -
显示快捷键?