URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems-20020807/] [c/] [src/] [lib/] [libcpu/] [i386/] [cpuModel.h] - Rev 1765
Compare with Previous | Blame | View Log
/* cpuModel.h * * This file contains declaration for variables and code * that may be used to get the Intel Cpu identification * that has been performed by checkCPUtypeSetCr0 function. * * COPYRIGHT (c) 1998 valette@crf.canon.fr * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.OARcorp.com/rtems/license.html. * * cpuModel.h,v 1.3 2002/03/20 14:12:33 joel Exp */ #ifndef libcpu_cpuModel_h #define libcpu_cpuModel_h /* * Tell us the machine setup.. */ extern char hard_math; /* floating point coprocessor present indicator */ extern char x86; /* type of cpu (3 = 386, 4 =486, ...) */ extern char x86_model; extern char x86_mask; extern int x86_capability; extern char x86_vendor_id[13]; extern int have_cpuid; extern unsigned char Cx86_step; /* cyrix processor identification */ extern void printCpuInfo(); /* Display this information on console in ascii form */ #endif