Add passthrough CPUIF

This commit is contained in:
Alex Mykyta
2022-01-27 22:04:17 -08:00
parent ae9d555ef4
commit 321d8a6cd1
12 changed files with 161 additions and 14 deletions

View File

@@ -0,0 +1,10 @@
from ..base import CpuifTestMode
from peakrdl.regblock.cpuif.passthrough import PassthroughCpuif
class Passthrough(CpuifTestMode):
cpuif_cls = PassthroughCpuif
tb_files = [
"passthrough_driver.sv",
]
tb_template = "tb_inst.sv"