Make miex register all ones on reset

The register is redundant to the PLIC in pulpissimo and is never written by the PULP_SDK.
Therefore enable all Interrupts from the beginning to ensure functionality.
This commit is contained in:
Maximilian Koschay 2020-08-03 11:42:47 +02:00 committed by Pirmin Vogel
parent 0d6e220d79
commit ebc92e8c82

View file

@ -1459,7 +1459,7 @@ module ibex_cs_registers #(
ibex_csr #(
.Width (32),
.ShadowCopy (1'b0),
.ResetValue ('0)
.ResetValue ({32{1'b1}})
) u_miex_csr (
.clk_i (clk_i),
.rst_ni (rst_ni),