Skip to content

Commit

Permalink
fix cwe 1199 in reglk
Browse files Browse the repository at this point in the history
  • Loading branch information
chenc6 committed Aug 20, 2023
1 parent 7110397 commit 5928add
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion piton/design/chip/tile/ariane/src/reglk/reglk_wrapper.sv
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ assign reglk_ctrl = reglk_ctrl_i;
integer j;
always @(posedge clk_i)
begin
if(~(rst_ni && ~jtag_unlock && ~rst_9))
if(~(rst_ni && ~jtag_unlock))
begin
for (j=0; j < 6; j=j+1) begin
reglk_mem[j] <= 'h0;
Expand Down

0 comments on commit 5928add

Please sign in to comment.