Init_Complete


include vmm.inc

mov     ebx, SysVMHandle
mov     esi, OFFSET32 CommandTail
mov     eax, Init_Complete
VMMcall System_Control

Notifies the virtual device that the system and virtual devices have initialized successfully. Virtual devices that use V86 memory typically search for available pages, in the range 0xA0h through 100h, when processing this message. The virtual device may modify all general registers and flags.

SysVMHandle

Handle of the system virtual machine.

CommandTail

Address of the command tail retrieved from the program segment prefix (PSP) of VMM32.VXD. The first byte in the command tail specifies the length in bytes of the tail.

The system sends this message just before it releases its INIT pages and takes the instance snapshot.

Virtual devices can use the Simulate_Int and Exec_Int services to execute code in the system virtual machine.

See also Device_Init