long HostAddressGet ( long  firmwareAddress  ) 

Description:
HostAddressGet converts and returns a firmware address to a host controller address.
Parameters:
firmwareAddress Any address (firmware) in the controller's memory, as you would see it in VM3.
Returns:
(long) Host address.
Sample Code:
enter string as seen in VM3.
  // -- C++ -- //
  printf("Host address is 0x%x   Firmware Address is 0x%x\n", controller->HostAddressGet(firmwareAddr), firmwareAddr);
  // -- C# -- //
  Console.WriteLine("Host address is 0x{0}   Firmware Address is 0x{1}", controller.HostAddressGet(firmwareAddr), firmwareAddr);
See also:
MemorySet, MemoryGet, AddressFromStringGet, FirmwareAddressGet