sableclock.h
来自「<B>Digital的Unix操作系统VAX 4.2源码</B>」· C头文件 代码 · 共 25 行
H
25 行
/* ------------------------------------------------------------------ *//* | 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 + =
减小字号Ctrl + -
显示快捷键?