Changeset 100184 in vbox for trunk/src/VBox/VMM/VMMAll/CPUMAllRegs.cpp
- Timestamp:
- Jun 16, 2023 6:51:39 AM (18 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/CPUMAllRegs.cpp
r99739 r100184 1097 1097 { 1098 1098 return (CPUMCPUVENDOR)pVM->cpum.s.GuestFeatures.enmCpuVendor; 1099 } 1100 1101 1102 /** 1103 * Gets the guest CPU architecture. 1104 * 1105 * @returns CPU architecture. 1106 * @param pVM The cross context VM structure. 1107 */ 1108 VMMDECL(CPUMARCH) CPUMGetGuestArch(PCVM pVM) 1109 { 1110 RT_NOREF(pVM); 1111 return kCpumArch_X86; /* Static as we are in the x86 VMM module here. */ 1099 1112 } 1100 1113
Note:
See TracChangeset
for help on using the changeset viewer.