diff options
Diffstat (limited to 'src/mem/noncoherent_bus.hh')
-rw-r--r-- | src/mem/noncoherent_bus.hh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mem/noncoherent_bus.hh b/src/mem/noncoherent_bus.hh index dd43d8c19..e8c1ab57a 100644 --- a/src/mem/noncoherent_bus.hh +++ b/src/mem/noncoherent_bus.hh @@ -73,9 +73,11 @@ class NoncoherentBus : public BaseBus protected: /** - * Declare the single layer of this bus. + * Declare the two layers of this bus, one for requests and one + * for responses. */ - Layer layer; + Layer<SlavePort> reqLayer; + Layer<MasterPort> respLayer; /** * Declaration of the non-coherent bus slave port type, one will |