Files
PeakRDL-regblock/tests/lib/cpuifs/passthrough/__init__.py
2022-02-28 23:08:41 -08: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"