[v1.02][ARM] Add new ARMv9 uarchs and new Snapd SoC

This commit is contained in:
Dr-Noob
2022-10-09 17:36:23 +02:00
parent de24d86cd6
commit 195866aae3
3 changed files with 20 additions and 2 deletions

View File

@@ -517,6 +517,12 @@ bool match_special(char* soc_name, struct system_on_chip* soc) {
return true;
}
// Snapdragon 8 Gen 1 reported as "taro"
if(strcmp(soc_name, "taro") == 0) {
fill_soc(soc, "8 Gen 1", SOC_SNAPD_SM8450, 4);
return true;
}
return false;
}