Add empty unit test for coalescing unit

copied over from WithTLXbarUnitTests
This commit is contained in:
Hansung Kim
2023-02-22 16:40:22 -08:00
parent 1b733e7cf0
commit 5bf8bb8217

View File

@@ -0,0 +1,14 @@
// See LICENSE.SiFive for license details.
package freechips.rocketchip.tilelink
import chisel3._
import freechips.rocketchip.config.Parameters
import freechips.rocketchip.diplomacy._
import freechips.rocketchip.unittest._
class CoalescingUnitTest(nManagers: Int, txns: Int = 5000, timeout: Int = 500000)(implicit p: Parameters) extends UnitTest(timeout) {
val dut = Module(LazyModule(new TLRAMXbar(nManagers,txns)).module)
dut.io.start := io.start
io.finished := true.B
}