Files
PeakRDL-regblock/test/lib/cpuifs/passthrough/__init__.py
2022-01-27 22:04:17 -08:00

11 lines
253 B
Python

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"