New bitmap method SetRGBConversionFunction which can be used to
[tangerine.git] / workbench / c / CPUInfo / x86 / RiSE / main.c
blobdb342b4b78bf3ed8b1230374c0386fb12989862d
1 /*
2 (C) 2000 AROS - The Amiga Research OS
3 $Id$
5 Desc: Probe installed Rise Technology mP6 CPUs and display relevant information
6 Lang: english
7 */
9 /* BIG TO DO - SEPERATE THE INDIVIDUAL PROCESSOR FAMILY "PROBES" INTO RUNTIME SHARED LIBS OR SIMILAR */
11 /****************************************************************************************************
12 Currently Supports:
14 i386 compatable families...
15 Rise Technology mP6
17 *****************************************************************************************************/
19 #include "../x86.h"
21 /********************************************
22 Rise specific information
23 ********************************************/
25 void parse_i386_Rise( int maxi, struct i386_compat_intern * CPUi386 )
28 struct CPU_INTERN_DATA *global;
29 ULONG speed, maxei,unused;
30 int family = 0;
31 char *BUFF_STR;
33 if ((global = AllocMem(sizeof(struct CPU_INTERN_DATA),MEMF_PUBLIC|MEMF_CLEAR)))
35 speed = i386_approx_mhz();
37 else
39 printf( "ERROR: Couldn't allocate memory to parse CPU information .." );
40 return;
42 FreeMem(global,sizeof(struct CPU_INTERN_DATA));