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.

Synplify pro error "Reference to unknown variable glbl

Status
Not open for further replies.

jay_ec_engg

Full Member level 3
Joined
Jun 19, 2004
Messages
155
Helped
1
Reputation
2
Reaction score
0
Trophy points
1,296
Location
India
Activity points
1,581
reference to unknown variable

I am getting error during synthesis for OBUFT and OBUFTDS for spartan-3 fpgas. The error is

OBUFT and OBUFTDS used glbl.GTS signal in thier codes. So I added glbl.v , OBUFTDS.v and OBUFT.v files in the working folder and then tried to synthesis with synplifyPro... but its still giving error "Reference to unknown variable glbl "

What is the solution?
 

Re: Synplify pro error "Reference to unknown variable g

You shouldn't have to move files around like that. Maybe you have a bad Synplify installation.

Can you compile this? It works fine here.

Code:
module test (i, o, t);
  input  i, t;
  output o;
  OBUFT o1 (.I(i), .O(o), .T(t));
endmodule
 

check the synplify pro's installation lib.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top