The c++ way to do it is here (under Windows).
The same answer but under Linux using GCC.
Excerpt of the relevant asm code as I understand it:
mov eax, 1
cpuid
mov features, edx
I’m not very comfortable at BASM.
My Question:
I need to wrap the test as follows
function IsSSE2: Boolean;
begin
try
Result := False;
//
// Some BASM code here
//
except
Result := False;
end;
end;
Please help me.
You can do that without assembler as well. Works with Windows XP and newer only though.