Files
PeakRDL-regblock/tests/lib/cpuifs/passthrough/__init__.py
2022-06-09 20:24:53 -07:00

12 lines
272 B
Python

from ..base import CpuifTestMode
from peakrdl_regblock.cpuif.passthrough import PassthroughCpuif
class Passthrough(CpuifTestMode):
cpuif_cls = PassthroughCpuif
rtl_files = []
tb_files = [
"passthrough_driver.sv",
]
tb_template = "tb_inst.sv"