Create_VM

include vmm.inc

mov     ebx, VMHandle
mov     eax, Create_VM
VMMCall System_Control
 

Notifies a virtual device that the system is creating a new virtual machine. Virtual devices typically initialize data associated with the virtual machine, such as data in the control block for the virtual machine. The virtual device may use all general registers and flags.

VMHandle
Handle of the new virtual machine.

Note that this message is delivered out of context; the new virtual machine has not yet started executing. Virtual devices typically ignore this message and act on the VM_Init message instead.

See Also

Destroy_VM