ahb apb: remove unintentional var
This commit is contained in:
parent
d89ee9d9d4
commit
87d597c70d
@ -21,7 +21,7 @@ class AHBFuzzNative(aFlow: Boolean, txns: Int)(implicit p: Parameters) extends L
|
|||||||
{
|
{
|
||||||
val fuzz = LazyModule(new TLFuzzer(txns))
|
val fuzz = LazyModule(new TLFuzzer(txns))
|
||||||
val model = LazyModule(new TLRAMModel("AHBFuzzNative"))
|
val model = LazyModule(new TLRAMModel("AHBFuzzNative"))
|
||||||
var xbar = LazyModule(new AHBFanout)
|
val xbar = LazyModule(new AHBFanout)
|
||||||
val ram = LazyModule(new AHBRAM(AddressSet(0x0, 0xff)))
|
val ram = LazyModule(new AHBRAM(AddressSet(0x0, 0xff)))
|
||||||
val gpio = LazyModule(new RRTest0(0x100))
|
val gpio = LazyModule(new RRTest0(0x100))
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ class APBFuzzBridge(aFlow: Boolean, txns: Int)(implicit p: Parameters) extends L
|
|||||||
{
|
{
|
||||||
val fuzz = LazyModule(new TLFuzzer(txns))
|
val fuzz = LazyModule(new TLFuzzer(txns))
|
||||||
val model = LazyModule(new TLRAMModel("APBFuzzMaster"))
|
val model = LazyModule(new TLRAMModel("APBFuzzMaster"))
|
||||||
var xbar = LazyModule(new APBFanout)
|
val xbar = LazyModule(new APBFanout)
|
||||||
val ram = LazyModule(new APBRAM(AddressSet(0x0, 0xff)))
|
val ram = LazyModule(new APBRAM(AddressSet(0x0, 0xff)))
|
||||||
val gpio = LazyModule(new RRTest0(0x100))
|
val gpio = LazyModule(new RRTest0(0x100))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user