📄 cpu.h
字号:
/*++
Copyright (c) 1995 Microsoft Corporation
Module Name:
cpu.h
Abstract:
Author:
Paul Shih (paulsh) 13-Apr-1995
Environment:
Kernel mode (unmapped) only
History:
Note:
--*/
#ifndef _CPU_H_
#define _CPU_H_
#include <monitor.h>
#include <regindex.h>
typedef struct _REGISTER_MAP {
REGISTER_NAME name; // This must be the first entry
int index;
int enumerate;
} REGISTER_MAP, * PREGISTER_MAP;
extern unsigned int Register[NUMBER_OF_REGISTERS];
#if MIPS
//
// At this time, we assume that the MIPS chips are either R4200 or R4000
//
#if R4200
#define NUMBER_OF_TLB_ENTRIES 32
#else
#define NUMBER_OF_TLB_ENTRIES 48
#endif
#endif
#endif // _CPU_H_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -