added debug prints about vmcs initialization

This commit is contained in:
Stanislav Shwartsman 2011-12-09 19:57:40 +00:00
parent 117333ca8f
commit ac0ebc9728

View File

@ -60,6 +60,10 @@ void BX_CPU_C::init_VMCS(void)
if(vmcs_map[type][field] >= VMX_VMCS_AREA_SIZE) {
BX_PANIC(("VMCS type %d field %d (encoding = 0x%08x) is out of VMCS boundaries", type, field, encoding));
}
BX_DEBUG(("VMCS field 0x%08x located at 0x%08x", encoding, vmcs_map[type][field]));
}
else {
BX_DEBUG(("VMCS field 0x%08x is not supported", encoding));
}
}
}