307c307
< * Get a master port with a given name and index. This is used at
---
> * Get a port with a given name and index. This is used at
309c309
< * base master port.
---
> * port.
316,317c316,317
< virtual BaseMasterPort& getMasterPort(const std::string& if_name,
< PortID idx = InvalidPortID) override;
---
> Port &getPort(const std::string &if_name,
> PortID idx=InvalidPortID) override;
320,332d319
< * Get a slave port with a given name and index. This is used at
< * binding time and returns a reference to a protocol-agnostic
< * base master port.
< *
< * @param if_name Port name
< * @param idx Index in the case of a VectorPort
< *
< * @return A reference to the given port
< */
< virtual BaseSlavePort& getSlavePort(const std::string& if_name,
< PortID idx = InvalidPortID) override;
<
< /**