diff options
author | Tony Gutierrez <anthony.gutierrez@amd.com> | 2016-02-17 11:31:54 -0500 |
---|---|---|
committer | Tony Gutierrez <anthony.gutierrez@amd.com> | 2016-02-17 11:31:54 -0500 |
commit | 969babd26f475953e5f68033c5999bc9691bdc11 (patch) | |
tree | d8bc27c612e21be9448651382c49af8ce456aadc /src/mem | |
parent | a34ff350da1367f5daabfe7cc5b36956bc21898a (diff) | |
download | gem5-969babd26f475953e5f68033c5999bc9691bdc11.tar.xz |
ruby: send address ranges from RubyPort
Diffstat (limited to 'src/mem')
-rw-r--r-- | src/mem/ruby/system/RubyPort.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mem/ruby/system/RubyPort.cc b/src/mem/ruby/system/RubyPort.cc index bf4002126..d4fc9e3fe 100644 --- a/src/mem/ruby/system/RubyPort.cc +++ b/src/mem/ruby/system/RubyPort.cc @@ -84,6 +84,9 @@ RubyPort::init() { assert(m_controller != NULL); m_mandatory_q_ptr = m_controller->getMandatoryQueue(); + + for (const auto &s_port : slave_ports) + s_port->sendRangeChange(); } BaseMasterPort & |