* wip * reorg * update sv int * apb4 working * apb3 working * version bump + ignore runner warning * remove redundant check * adding log on failure * cleaning up verilator version issue * devcontainer * Fix missing libpython in GitHub Actions CI environment (#21) * Initial plan * Install libpython in GitHub Actions for cocotb tests Co-authored-by: arnavsacheti <36746504+arnavsacheti@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: arnavsacheti <36746504+arnavsacheti@users.noreply.github.com> --------- Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
11 lines
362 B
Python
11 lines
362 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"),
|
|
("variable_layout.rdl", "variable_layout"),
|
|
("asymmetric_bus.rdl", "asymmetric_bus"),
|
|
]
|