[rtl] Increase minimum delay for IRQ assertion in new sequence library

An IRQ asserting then deasserting when not explictly cleared by an
interrupt handler can lead to RTL/cosim mismatches in some cases.
Increasing the delay here minimises those instances.
This commit is contained in:
Greg Chadwick 2023-04-13 17:52:53 +01:00
parent 54040df15c
commit e587f20d44

View file

@ -132,8 +132,8 @@ class irq_new_seq extends core_base_new_seq #(irq_seq_item);
bit no_timer;
bit no_software;
int unsigned max_delay = 500;
int unsigned min_delay = 50;
int unsigned max_delay = 1000;
int unsigned min_delay = 300;
rand int interval = min_delay;