Files
PeakRDL-regblock/test/lib/cpuifs/passthrough/__init__.py
2022-02-23 22:53:54 -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"