Platforms to show: All Mac Windows Linux Cross-Platform

FAQ - Graphics.How to detect if CPU if 64bit processor?

Answer: Via CPUID you can ask CPU:
Example
dim c as new CPUIDMBS

if c.Flags(CPUIDMBS.kFeatureLM) then
MsgBox "64-bit CPU"
else
MsgBox "32-bit CPU"
end if

Should work on all intel compatible CPUs.

See also:


The biggest plugin in space...