diff options
Diffstat (limited to 'src/mem/bus.hh')
-rw-r--r-- | src/mem/bus.hh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mem/bus.hh b/src/mem/bus.hh index f7f69e08e..7fdf5db26 100644 --- a/src/mem/bus.hh +++ b/src/mem/bus.hh @@ -287,6 +287,11 @@ class Bus : public MemObject bool inRetry; std::set<int> inRecvRangeChange; + // keep track of the number of master ports (not counting the + // default master) since we need this as an offset into the + // interfaces vector + unsigned int nbrMasterPorts; + /** An ordered vector of pointers to the peer port interfaces connected to this bus.*/ std::vector<BusPort*> interfaces; |