Files
PeakRDL-BusDecoder/tests/cocotb_lib/__init__.py
Arnav Sacheti c7b6c9e5ef set cpuif_data_width for non-external components (#42)
* set cpuif_data_width for non-external components

* update tests to actually work now

* version bump
2026-02-03 21:58:45 -08:00

13 lines
456 B
Python

"""Manifest of SystemRDL sources used by the cocotb simulations."""
RDL_CASES: list[tuple[str, str]] = [
("simple.rdl", "simple_test"),
("multiple_reg.rdl", "multi_reg"),
("deep_hierarchy.rdl", "deep_hierarchy"),
("wide_status.rdl", "wide_status"),
("wide_access_64.rdl", "wide_access_64"),
("wide_access_128.rdl", "wide_access_128"),
("variable_layout.rdl", "variable_layout"),
("asymmetric_bus.rdl", "asymmetric_bus"),
]