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.

error- uninitialized virtual interface object

Status
Not open for further replies.

akshayjog

Newbie level 1
Newbie level 1
Joined
Nov 8, 2009
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Location
usa
Activity points
1,290
hi,
I have following error while simulating some ovm code
"uninitialized virtual interface object"

Can some one explain to me , what does this error mean and how to fix it??

after this error message it shows me the line in my code so pasting that part of code as well

//*****************************
virtual task reset_signals();

@(negedge vmif.i_aresetn); // error at this line-----------------------

//write address signals
vmif.i_awid_m <= 4'b0;
vmif.i_awaddr_m <= 32'b0;
vmif.i_awsize_m <= 3'b0;
.......
//******************************

thanks in advance
 

Virtual interface needs to be initialized before it is used, otherwise its value is NULL.

- Madhusudan
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top