test configurations for both shrinking and growing TL -> MIF

这个提交包含在:
Howard Mao
2016-07-01 18:13:33 -07:00
父节点 e04e3d2571
当前提交 b01871c3de
共有 2 个文件被更改,包括 9 次插入0 次删除

查看文件

@@ -497,6 +497,8 @@ class WithMIFDataBits(n: Int) extends Config(
class MIF128BitConfig extends Config(
new WithMIFDataBits(128) ++ new BaseConfig)
class MIF32BitConfig extends Config(
new WithMIFDataBits(32) ++ new BaseConfig)
class WithDmaController extends Config(
(pname, site, here) => pname match {

查看文件

@@ -231,3 +231,10 @@ class FancyMemtestConfig extends Config(
class MIF128BitComparatorConfig extends Config(
new WithMIFDataBits(128) ++ new ComparatorConfig)
class MIF128BitMemtestConfig extends Config(
new WithMIFDataBits(128) ++ new MemtestConfig)
class MIF32BitComparatorConfig extends Config(
new WithMIFDataBits(32) ++ new ComparatorConfig)
class MIF32BitMemtestConfig extends Config(
new WithMIFDataBits(32) ++ new MemtestConfig)