Skip to content

Commit

Permalink
mshr: Prevent assertion misfire during reset
Browse files Browse the repository at this point in the history
  • Loading branch information
paulsc96 committed Nov 6, 2024
1 parent edd501c commit 6e37f31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtl/src/hpdcache_mshr.sv
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ import hpdcache_pkg::*;
// Assertions
// {{{
`ifndef HPDCACHE_ASSERT_OFF
one_command_assert: assert property (@(posedge clk_i)
one_command_assert: assert property (@(posedge clk_i) disable iff (rst_ni !== 1'b1)
(ack_i -> !(alloc_i || check_i))) else
$error("MSHR: ack with concurrent alloc or check");
`endif
Expand Down

0 comments on commit 6e37f31

Please sign in to comment.