MFC 1.208: Identify the dual-core Montecito.

This commit is contained in:
marcel 2006-06-25 19:07:51 +00:00
parent b0daff4ba7
commit 2f0796e78b

View File

@ -211,6 +211,14 @@ identifycpu(void)
break;
}
break;
case 0x20:
family_name = "Itanium 2";
switch (model) {
case 0x00:
model_name = "Montecito";
break;
}
break;
}
snprintf(cpu_family, sizeof(cpu_family), "%s", family_name);
snprintf(cpu_model, sizeof(cpu_model), "%s", model_name);