We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0ea2deb + b108de3 commit 1a8dae9Copy full SHA for 1a8dae9
src/main/scala/subsystem/Ports.scala
@@ -105,8 +105,9 @@ trait CanHaveMasterAXI4MemPort { this: BaseSubsystem =>
105
})
106
107
mbus.coupleTo(s"memory_controller_port_named_$portName") {
108
- (memAXI4Node
109
- := AXI4UserYanker()
+ // Disable monitors on this connection since the class with this trait (i.e. DigitalTop) doesn't provide an
+ // implicit clock for the monitor.
110
+ (DisableMonitors { implicit p => memAXI4Node := AXI4UserYanker() }
111
:= AXI4IdIndexer(idBits)
112
:= TLToAXI4()
113
:= TLWidthWidget(mbus.beatBytes)
0 commit comments