[fpv] Assume icache req_i input is low when in reset

This avoids spurious requests going out on the instruction bus.
This commit is contained in:
Rupert Swarbrick 2020-11-26 13:45:56 +00:00 committed by Tom Roberts
parent afb21c2077
commit 38a6b59e0b

View file

@ -12,6 +12,9 @@
`define IS_ONE_HOT(expr, width) \
!((expr) & ((expr) - {{(width)-1{1'b0}}, 1'b1}))
`define ASSUME_ZERO_IN_RESET(name) \
`ASSUME(name``_zero_in_reset, `IMPLIES(!rst_ni, ~|(name)), clk_i, 1'b0)
module formal_tb #(
// DUT parameters
parameter int unsigned BusWidth = 32,