cpu.h

来自「WinCE 3.0 BSP, 包含Inter SA1110, Intel_815」· C头文件 代码 · 共 53 行

H
53
字号
/*++

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