48a49,51
> PhysicalMemory *nvram;
> PhysicalMemory *hypervisor_desc;
> PhysicalMemory *partition_desc;
51a55,57
> Addr nvram_addr;
> Addr hypervisor_desc_addr;
> Addr partition_desc_addr;
54a61,63
> std::string nvram_bin;
> std::string hypervisor_desc_bin;
> std::string partition_desc_bin;
79a89,97
> /** nvram symbol table? */
> SymbolTable *nvramSymtab;
>
> /** hypervisor desc symbol table? */
> SymbolTable *hypervisorDescSymtab;
>
> /** partition desc symbol table? */
> SymbolTable *partitionDescSymtab;
>
88a107,115
> /** Object pointer for the nvram image */
> ObjectFile *nvram;
>
> /** Object pointer for the hypervisor description image */
> ObjectFile *hypervisor_desc;
>
> /** Object pointer for the partition description image */
> ObjectFile *partition_desc;
>
94a122,130
> /** functional port to nvram */
> FunctionalPort funcNvramPort;
>
> /** functional port to hypervisor description */
> FunctionalPort funcHypDescPort;
>
> /** functional port to partition description */
> FunctionalPort funcPartDescPort;
>