mirror of
https://github.com/openhwgroup/cve2.git
synced 2025-04-24 22:17:39 -04:00
ibex_counter: Use always_ff
Fix a lint error reported by AscentLint: ``` E ALWAYS_SPEC: ibex_counter.sv:59 Edge triggered block may be more accurately modeled as always_ff New ```
This commit is contained in:
parent
3d29e5174c
commit
d0923fa5d1
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ module ibex_counter #(
|
|||
`endif
|
||||
|
||||
// Counter flop
|
||||
always @(`COUNTER_FLOP_RST) begin
|
||||
always_ff @(`COUNTER_FLOP_RST) begin
|
||||
if (!rst_ni) begin
|
||||
counter_q <= '0;
|
||||
end else begin
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue