📄 cachectl.h
字号:
/* ------------------------------------------------------------------ *//* | Copyright Unpublished, MIPS Computer Systems, Inc. All Rights | *//* | Reserved. This software contains proprietary and confidential | *//* | information of MIPS and its suppliers. Use, disclosure or | *//* | reproduction is prohibited without the prior express written | *//* | consent of MIPS. | *//* ------------------------------------------------------------------ *//* * cachectl.h -- defines for MIPS cache control system calls *//* * Options for cacheflush system call */#define ICACHE 0x1 /* flush i cache */#define DCACHE 0x2 /* flush d cache */#define BCACHE (ICACHE|DCACHE) /* flush both caches *//* * Options for cachectl system call */#define CACHEABLE 0 /* make page(s) cacheable */#define UNCACHEABLE 1 /* make page(s) uncacheable */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -