 Instructions 32 Bit Version
 
 Copy whets.c to a new folder and the following
 cpuida.o, cpuidc.o and cpuidh.h from common_32bit.

 Line 181 in whets.c change opt to "No Opt", "Opt 2" or "Opt 3". 

 Compile and link using one or more of the following
 commands in Terminal pointing to the new folder.

 gcc whets.c cpuidc.o cpuida.o -lrt -lc -lm -o whet
 gcc whets.c cpuidc.o cpuida.o -lrt -lc -lm -O2 -o whet2
 gcc whets.c cpuidc.o cpuida.o -lrt -lc -lm -O3 -o whet3

 Execute using ./whet, ./whet2 or ./whet3.
 Results should be displayed and saved in whets.txt.



 Instructions 64 Bit Version

 Copy whets.c to a new folder and the following
 cpuida64.o, cpuidc64.o and cpuidh.h from common_64bit.

 Line 181 in whets.c change opt to "No Opt 64", "Opt 2 64" or "Opt 3 64". 
 
 Compile and link using one or more of the following
 commands in Terminal pointing to the new folder.

 gcc whets.c cpuidc64.o cpuida64.o -m64 -lrt -lc -lm -o whet_64
 gcc whets.c cpuidc64.o cpuida64.o -m64 -lrt -lc -lm -O2 -o whet2_64
 gcc whets.c cpuidc64.o cpuida64.o -m64 -lrt -lc -lm -O3 -o whet3_64

 Execute using ./whet_64, ./whet2_64 or ./whet3_64.
 Results should be displayed and saved in whets.txt.
 
 The execution files can be renamed later.
