Files
PeakRDL-BusDecoder/tests/lib/cpuifs/passthrough/__init__.py
2025-10-10 22:30:59 -07:00

13 lines
275 B
Python

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