[rtl] Update use of prim_count following port changes

The latest version of `prim_count` from OpenTitan introduces a
`commit_i` input. To retain the behaviour of the previous `prim_count`
this should be set to a constant 1.

The `cnt_next_o` output has been renamed to `cnt_after_commit_o`.
This commit is contained in:
Greg Chadwick 2024-02-29 18:09:58 +00:00 committed by Marno van der Maas
parent 71683aa595
commit 27dd6b2e06

View file

@ -140,8 +140,9 @@ module ibex_lockstep import ibex_pkg::*; #(
.incr_en_i (1'b1 ),
.decr_en_i (1'b0 ),
.step_i (LockstepOffsetW'(1'b1) ),
.commit_i (1'b1 ),
.cnt_o (rst_shadow_cnt ),
.cnt_next_o ( ),
.cnt_after_commit_o ( ),
.err_o (rst_shadow_cnt_err )
);