Skip to content

Commit

Permalink
Merge pull request #169 from pulp-platform/fix-trst-init
Browse files Browse the repository at this point in the history
src: Fix wrong reset state for TAP after trst_ni
  • Loading branch information
bluewww authored Jul 8, 2024
2 parents 210d899 + d7b8670 commit 618ee6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dmi_jtag_tap.sv
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ module dmi_jtag_tap #(

always_ff @(posedge tck_i or negedge trst_ni) begin : p_regs
if (!trst_ni) begin
tap_state_q <= RunTestIdle;
tap_state_q <= TestLogicReset;
idcode_q <= IdcodeValue;
bypass_q <= 1'b0;
end else begin
Expand Down

0 comments on commit 618ee6e

Please sign in to comment.