⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cpuident.h

📁 RTEMS (Real-Time Executive for Multiprocessor Systems) is a free open source real-time operating sys
💻 H
字号:
/* * Copyright (C) 1999  Eric Valette (valette@crf.canon.fr) *                     Canon Centre Recherche France. * *  Added MPC8260 Andy Dachs <a.dachs@sstl.co.uk> *  Surrey Satellite Technology Limited * * *  The license and distribution terms for this file may be *  found in found in the file LICENSE in this distribution or at *  http://www.rtems.com/license/LICENSE. * *  $Id: cpuIdent.h,v 1.2.4.4 2004/11/22 22:32:47 jennifer Exp $ */#ifndef _libcpu_cpuIdent_h#define _libcpu_cpuIdent_h#ifndef ASMtypedef enum{  PPC_601 = 0x1,  PPC_603 = 0x3,  PPC_604 = 0x4,  PPC_603e = 0x6,  PPC_603ev = 0x7,  PPC_750 = 0x8,  PPC_604e = 0x9,  PPC_604r = 0xA,  PPC_7400 = 0xC,  PPC_620 = 0x16,  PPC_860 = 0x50,  PPC_821 = PPC_860,  PPC_8260 = 0x81,  PPC_8240 = PPC_8260,  PPC_8245 = 0x8081,  PPC_PSIM = 0xfffe,  /* GDB PowerPC simulator -- fake version */  PPC_UNKNOWN = 0xffff} ppc_cpu_id_t;typedef unsigned short ppc_cpu_revision_t;extern ppc_cpu_id_t get_ppc_cpu_type ();extern ppc_cpu_id_t current_ppc_cpu;extern char *get_ppc_cpu_type_name(ppc_cpu_id_t cpu);extern ppc_cpu_revision_t get_ppc_cpu_revision ();extern ppc_cpu_revision_t current_ppc_revision;#endif /* ASM */#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -