Possible Duplicate:
Identifying the CPU architecture type using C#
my program is using diffrent assemblies for its final part.The problem is that amd and intelx64 assemblies are not fully compatible. Its is for an compiler im working on.
Possible Duplicate:
Identifying the CPU architecture type using C#
my program is using diffrent assemblies for its final part.The problem is that amd and intelx64 assemblies are not fully compatible. Its is for an compiler im working on.
you could use exception handling, using try and catch.
try
{
// intel assembly
}
catch
{
// amd assembly
}