115c115
< void setIcachePort(Port *icache_port);
---
> void setIcachePort(CpuPort *icache_port);
117c117
< Port *icachePort;
---
> CpuPort *icachePort;
119c119
< void setDcachePort(Port *dcache_port);
---
> void setDcachePort(CpuPort *dcache_port);
121c121
< Port *dcachePort;
---
> CpuPort *dcachePort;
122a123,134
> CpuPort &getDataPort()
> {
> panic("Not supported on checker!");
> return *dcachePort;
> }
>
> CpuPort &getInstPort()
> {
> panic("Not supported on checker!");
> return *icachePort;
> }
>
171c183
< virtual Counter totalInstructions() const
---
> virtual Counter totalInsts() const
175a188,192
> virtual Counter totalOps() const
> {
> return 0;
> }
>