mirror of
https://github.com/openhwgroup/cve2.git
synced 2025-04-22 04:57:25 -04:00
[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:
parent
afb21c2077
commit
38a6b59e0b
1 changed files with 3 additions and 0 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue