59,66d58
< //
< enum Type
< {
< // Port supports only instruction requests
< InstOnly,
< // Port supports only data requests
< DataOnly
< };
68,71c60,61
< CpuPort(const std::string &_name, RubyTester *_tester, int _idx,
< Type _type)
< : MasterPort(_name, _tester), tester(_tester), idx(_idx),
< type(_type)
---
> CpuPort(const std::string &_name, RubyTester *_tester, int _idx)
> : MasterPort(_name, _tester), tester(_tester), idx(_idx)
75d64
< Type type;
107a97,98
> bool isInstReadableCpuPort(int idx);
>
157,158c148,149
< std::vector<CpuPort*> writePorts;
< std::vector<CpuPort*> readPorts;
---
> std::vector<MasterPort*> writePorts;
> std::vector<MasterPort*> readPorts;