Changeset 76886 in vbox for trunk/src/VBox/ValidationKit/bootsectors
- Timestamp:
- Jan 18, 2019 10:57:02 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 128254
- Location:
- trunk/src/VBox/ValidationKit/bootsectors
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/bootsectors/bs3-cpu-generated-1-template.c
r76553 r76886 4747 4747 CASE_PRED(BS3CG1PRED_VENDOR_INTEL, pThis->bCpuVendor == BS3CPUVENDOR_INTEL); 4748 4748 CASE_PRED(BS3CG1PRED_VENDOR_VIA, pThis->bCpuVendor == BS3CPUVENDOR_VIA); 4749 CASE_PRED(BS3CG1PRED_VENDOR_SHANGHAI, pThis->bCpuVendor == BS3CPUVENDOR_SHANGHAI); 4749 4750 4750 4751 #undef CASE_PRED -
trunk/src/VBox/ValidationKit/bootsectors/bs3-cpu-generated-1.h
r76579 r76886 775 775 BS3CG1PRED_VENDOR_INTEL, 776 776 BS3CG1PRED_VENDOR_VIA, 777 BS3CG1PRED_VENDOR_SHANGHAI, 777 778 778 779 BS3CG1PRED_END -
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-GetCpuVendor.c
r76553 r76886 43 43 if (ASMIsViaCentaurCpuEx(uEbx, uEcx, uEdx)) 44 44 return BS3CPUVENDOR_VIA; 45 if (ASMIsShanghaiCpuEx(uEbx, uEcx, uEdx)) 46 return BS3CPUVENDOR_SHANGHAI; 45 47 return BS3CPUVENDOR_UNKNOWN; 46 48 } -
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3kit.h
r76579 r76886 1537 1537 BS3CPUVENDOR_VIA, 1538 1538 BS3CPUVENDOR_CYRIX, 1539 BS3CPUVENDOR_SHANGHAI, 1539 1540 BS3CPUVENDOR_UNKNOWN, 1540 1541 BS3CPUVENDOR_END
Note:
See TracChangeset
for help on using the changeset viewer.