* add map size as a localparam in rdl map package * rename from _SIZE -> _BYTES_SIZE * fix names on new test & localparam * wrap map size in SVInt
13 lines
224 B
Systemverilog
13 lines
224 B
Systemverilog
{% extends "lib/tb_base.sv" %}
|
|
|
|
{% block seq %}
|
|
{% sv_line_anchor %}
|
|
##1;
|
|
cb.rst <= '0;
|
|
##1;
|
|
|
|
// check block size
|
|
assert(regblock_pkg::REGBLOCK_SIZE == {{exporter.ds.top_node.size}});
|
|
|
|
{% endblock %}
|