13 lines
275 B
Python
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"
|