From a917f554fd42ded613288e40962cb1a72e7d4b5e Mon Sep 17 00:00:00 2001 From: Howard Mao Date: Wed, 1 Jun 2016 11:40:59 -0700 Subject: [PATCH] use Wesley's test SRAM for AXI -> AHB converter test --- groundtest/src/main/scala/unittest.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/groundtest/src/main/scala/unittest.scala b/groundtest/src/main/scala/unittest.scala index affbfbdf..30ed1c97 100644 --- a/groundtest/src/main/scala/unittest.scala +++ b/groundtest/src/main/scala/unittest.scala @@ -77,7 +77,7 @@ class HastiTestDriver(implicit p: Parameters) extends NastiModule { } class HastiTest(implicit p: Parameters) extends UnitTest { - val sram = Module(new HastiRAM(8)) + val sram = Module(new HastiTestSRAM(8)) val bus = Module(new HastiBus(Seq(a => Bool(true)))) val conv = Module(new HastiMasterIONastiIOConverter) val driver = Module(new HastiTestDriver)