Skip to content

Fixed __vmx_on parameter being incorrect #3899

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 16, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/intrinsics/vmx-on.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
description: "Learn more about: __vmx_on"
title: "__vmx_on"
ms.date: 04/14/2022
ms.date: 05/16/2022
f1_keywords: ["__vmx_on"]
helpviewer_keywords: ["VMXON instruction", "__vmx_on intrinsic"]
ms.assetid: 16804991-6a75-4adf-8ec2-bc95acfa4801
Expand All @@ -16,14 +16,14 @@ Activates virtual machine extensions (VMX) operation in the processor.

```C
unsigned char __vmx_on(
unsigned __int64 *VmsSupportPhysicalAddress
unsigned __int64 *VmxonRegionPhysicalAddress
);
```

### Parameters

*VmsSupportPhysicalAddress*\
[in] A pointer to a 64-bit physical address that points to a VMXON region.
*`VmxonRegionPhysicalAddress`*\
[in] A pointer to a 64-bit, 4KB-aligned physical address that points to a VMXON region.

## Return value

Expand Down