Avoid self-determined bit length of signals

This works around a lint error we get; the old and the new version are
equally wrong or right, but it doesn't seem to be worth fighting with a tool.
This commit is contained in:
Philipp Wagner 2019-10-09 10:55:05 +01:00 committed by Philipp Wagner
parent cdc8078c0f
commit 90ff45abbd

View file

@ -753,7 +753,7 @@ module ibex_cs_registers #(
assign pmp_cfg_rdata[i] = '0;
end
for (genvar i = 0; i < PMPNumRegions; i++) begin : g_outputs
assign csr_pmp_cfg_o[i] = pmp_cfg_t'('0);
assign csr_pmp_cfg_o[i] = pmp_cfg_t'(1'b0);
assign csr_pmp_addr_o[i] = '0;
end
end