Posted by rag123 on May 8, 2021
UVM #coverage Hi, I am trying to write a coverage for enum which is dynamic array and i am not able to completely write it. Here is my code. Can anyone help me? typedef enum bit[1:0] {IDLE, BUSY, NONSEQ, SEQ} transfer_t; In transaction class rand transfer ...
Question