Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Functional coverage using irun

Status
Not open for further replies.

surisingh

Member level 1
Member level 1
Joined
Jun 14, 2007
Messages
32
Helped
1
Reputation
2
Reaction score
0
Trophy points
1,286
Visit site
Activity points
1,499
Hi,
I am using irun for compilation and elaboration of my design and the testbench. I have a very simple interface file 'sv_interface.sv' which contains,

interface usbsys (input wire clk);

covergroup write_limit @ (negedge clk);
WriteLimit : coverpoint top_tb.read_write {
bins write= {0};
bins read = {1};
}
endgroup
write_limit wr_count = new();
endinterface

in top_tb.sv, I have instantiated this interface like, usbsys usbsys_inst(clk);

In my Makefile elaboration, I have '-coverage functional sv_interface.sv'

But my elaboration is kept on going like this...

client read error: Success
client read error: Success
streams: 68, words: 112925
worklib.uvm_pkg:rtl <0x1d2341d3>….
any idea?
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top