mirror of
https://github.com/lowRISC/ibex.git
synced 2025-04-22 04:47:25 -04:00
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:
parent
cdc8078c0f
commit
90ff45abbd
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue