38a39,44
> #include "config/full_system.hh"
>
> #if FULL_SYSTEM //XXX AlphaSystem doesn't build in SE mode yet.
> #include "arch/alpha/system.hh"
> #endif
>
46d51
< #include "sim/system.hh"
55,59d59
< #if FULL_SYSTEM //XXX No platform pointer in SE mode.
< // set the back pointer from the system to myself
< system->platform = this;
< #endif
<
64,65c64,65
< Tick
< Tsunami::intrFrequency()
---
> void
> Tsunami::init()
67c67,71
< return io->frequency();
---
> #if FULL_SYSTEM //XXX AlphaSystem doesn't build in SE mode yet.
> AlphaSystem *alphaSystem = dynamic_cast<AlphaSystem *>(system);
> assert(alphaSystem);
> alphaSystem->setIntrFreq(io->frequency());
> #endif