Files
PeakRDL-BusDecoder/tests/test_map_size/tb_template.sv
2025-10-10 22:30:59 -07:00

13 lines
226 B
Systemverilog

{% extends "lib/tb_base.sv" %}
{% block seq %}
{% sv_line_anchor %}
##1;
cb.rst <= '0;
##1;
// check block size
assert(busdecoder_pkg::REGBLOCK_SIZE == {{exporter.ds.top_node.size}});
{% endblock %}