mirror of
https://github.com/lowRISC/ibex.git
synced 2025-04-22 12:57:13 -04:00
[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:
parent
54040df15c
commit
e587f20d44
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue