2 Copyright © 2000, The AROS Development Team. All rights reserved.
5 Desc: Probe installed IDT CPUs and display relevant information
9 /* BIG TO DO - SEPERATE THE INDIVIDUAL PROCESSOR FAMILY "PROBES" INTO RUNTIME SHARED LIBS OR SIMILAR */
11 /****************************************************************************************************
14 i386 compatable families...
17 *****************************************************************************************************/
21 /********************************************
22 IDT Specific information..
23 ********************************************/
25 void parse_i386_IDT( int maxi
, struct i386_compat_intern
* CPUi386
)
28 struct CPU_INTERN_DATA
*global
;
29 ULONG speed
, maxei
,unused
;
33 if ((global
= AllocMem(sizeof(struct CPU_INTERN_DATA
),MEMF_PUBLIC
|MEMF_CLEAR
)))
35 speed
= i386_approx_mhz();
39 printf( "ERROR: Couldn't allocate memory to parse CPU information .." );
42 FreeMem(global
,sizeof(struct CPU_INTERN_DATA
));