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