externals: Update Xbyak to 5.65

This commit is contained in:
Lioncash 2018-07-17 21:57:43 -04:00 committed by MerryMage
parent 3f602129f4
commit d4688b7f2d
13 changed files with 177 additions and 56 deletions

View file

@ -104,6 +104,9 @@ void putCPUinfo()
Core i7-3930K 6 2D
*/
cpu.putFamily();
for (unsigned int i = 0; i < cpu.getDataCacheLevels(); i++) {
printf("cache level=%u data cache size=%u cores sharing data cache=%u\n", i, cpu.getDataCacheSize(i), cpu.getCoresSharingDataCache(i));
}
}
int main()