Changeset 92577 in vbox
- Timestamp:
- Nov 24, 2021 1:49:26 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 148459
- Location:
- trunk
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/asm-amd64-x86.h
r87404 r92577 2391 2391 */ 2392 2392 #if RT_INLINE_ASM_EXTERNAL && !RT_INLINE_ASM_USES_INTRIN 2393 RT_ASM_DECL_PRAGMA_WATCOM (void) ASMWrMsr(uint32_t uRegister, uint64_t u64Val);2393 RT_ASM_DECL_PRAGMA_WATCOM_386(void) ASMWrMsr(uint32_t uRegister, uint64_t u64Val); 2394 2394 #else 2395 2395 DECLINLINE(void) ASMWrMsr(uint32_t uRegister, uint64_t u64Val) … … 2428 2428 */ 2429 2429 #if RT_INLINE_ASM_EXTERNAL 2430 RT_ASM_DECL_PRAGMA_WATCOM (uint64_t) ASMRdMsrEx(uint32_t uRegister, RTCCUINTXREG uXDI);2430 RT_ASM_DECL_PRAGMA_WATCOM_386(uint64_t) ASMRdMsrEx(uint32_t uRegister, RTCCUINTXREG uXDI); 2431 2431 #else 2432 2432 DECLINLINE(uint64_t) ASMRdMsrEx(uint32_t uRegister, RTCCUINTXREG uXDI) … … 2466 2466 */ 2467 2467 #if RT_INLINE_ASM_EXTERNAL 2468 RT_ASM_DECL_PRAGMA_WATCOM (void) ASMWrMsrEx(uint32_t uRegister, RTCCUINTXREG uXDI, uint64_t u64Val);2468 RT_ASM_DECL_PRAGMA_WATCOM_386(void) ASMWrMsrEx(uint32_t uRegister, RTCCUINTXREG uXDI, uint64_t u64Val); 2469 2469 #else 2470 2470 DECLINLINE(void) ASMWrMsrEx(uint32_t uRegister, RTCCUINTXREG uXDI, uint64_t u64Val) -
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/Makefile.kmk
r92529 r92577 238 238 ../../../Runtime/common/asm/ASMCpuId.asm \ 239 239 ../../../Runtime/common/asm/ASMCpuId_Idx_ECX.asm \ 240 ../../../Runtime/common/asm/ASMWrMsr.asm \ 240 241 ../../../Runtime/common/asm/ASMGetXcr0.asm \ 241 242 ../../../Runtime/common/asm/ASMSetXcr0.asm \ … … 281 282 $(call BS3KIT_FN_GEN_CMN_FARSTUB,bs3kit-common-16,ASMCpuIdExSlow,32) 282 283 $(call BS3KIT_FN_GEN_CMN_FARSTUB,bs3kit-common-16,ASMCpuId,20) 284 $(call BS3KIT_FN_GEN_CMN_FARSTUB,bs3kit-common-16,ASMWrMsr,12) 283 285 $(call BS3KIT_FN_GEN_CMN_FARSTUB,bs3kit-common-16,ASMSetXcr0,8) 284 286 $(call BS3KIT_FN_GEN_CMN_FARSTUB,bs3kit-common-16,ASMGetXcr0,0)
Note:
See TracChangeset
for help on using the changeset viewer.