65a66,76
> }
>
> void
> LinuxAlphaSystem::initState()
> {
> // Moved from the constructor to here since it relies on the
> // address map being resolved in the interconnect
>
> // Call the initialisation of the super class
> AlphaSystem::initState();
>
80,81c91,93
< virtPort->writeBlob(CommandLine(), (uint8_t*)params()->boot_osflags.c_str(),
< params()->boot_osflags.length()+1);
---
> virtProxy->writeBlob(CommandLine(),
> (uint8_t*)params()->boot_osflags.c_str(),
> params()->boot_osflags.length()+1);
89,90c101,102
< virtPort->write(addr, (uint64_t)(SimClock::Frequency /
< p->boot_cpu_frequency));
---
> virtProxy->write(addr, (uint64_t)(SimClock::Frequency /
> params()->boot_cpu_frequency));
100c112
< virtPort->write(addr + 0x18, LittleEndianGuest::htog((uint32_t)127));
---
> virtProxy->write(addr + 0x18, LittleEndianGuest::htog((uint32_t)127));
167c179
< VirtualPort *vp;
---
> FSTranslatingPortProxy* vp;
169c181
< vp = tc->getVirtPort();
---
> vp = tc->getVirtProxy();