Skip to content

Commit

Permalink
Merge pull request #16 from pulp-platform/michaero/fix_fpga_scm
Browse files Browse the repository at this point in the history
Allow reset connection in SCM for FPGA-related targets
  • Loading branch information
micprog authored Jun 20, 2024
2 parents c25c2c8 + b51d11c commit 35845bd
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/snitch_icache_lookup_serial.sv
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,15 @@ module snitch_icache_lookup_serial #(
.DATA_WIDTH (CFG.TAG_WIDTH+2 )
) i_tag (
.clk ( clk_i ),
`ifndef TARGET_SCM_USE_LATCH_SCM
`ifdef TARGET_FPGA
.rst_n ( rst_ni ),
`elsif TARGET_VERILATOR
.rst_n ( rst_ni ),
`elsif TARGET_SCM_USE_FPGA_SCM
.rst_n ( rst_ni ),
`endif
`endif
.ReadEnable ( tag_enable[i] && !tag_write ),
.ReadAddr ( tag_addr ),
.ReadData ( tag_rdata[i] ),
Expand Down

0 comments on commit 35845bd

Please sign in to comment.