📄 sableclock.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. | *//* ------------------------------------------------------------------ *//* * Definition of the sable scheduling/time of day clock. */struct sable_clock { unsigned long sc_command; /* stop/start scheduling ticks */ unsigned long sc_sched_hz; /* rate of scheduling tick */ unsigned long sc_prof_hz; /* rate of profiling tick */ unsigned long sc_todr; /* time of day register. READONLY */};#define SC_SCHED_START 1#define SC_SCHED_ACK 2#define SC_PROF_START 4#define SC_PROF_ACK 8#define SABLE_CLOCK_BASE (struct sable_clock *)(0x1f002000+K1BASE)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -