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.

Toplevel Verilog with VHDL entities

Status
Not open for further replies.

niklar

Newbie level 4
Joined
Feb 2, 2003
Messages
5
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
40
Hello,

I have several VHDL entities that I would like to instantiate in a toplevel Verilog file. How can this be done?

Thanks
 

it depends on a simulator you use. if you use modelsim, check mixed simulation chapters of user guide

tahiti
 

In addition, it depends on synthesizers
 

Well, we are trying to run Design Analyzer of Synopsis. There is a relativly good tutorial on Verilog design.

However, the code we have is written in VHDL. Thus, we either have to "force" Design Analyzer deal with it or make a toplevel verilog code and somehow instatiate VHDL entities in it. :roll:

The problem with VHDL is that we can not find were we have to specify the technology (cmosp18). It keeps the default one - GTECH (general technology?)
 

The men*or's FPGAV can do this work. And spec*rum or X-Vhdl can transfer the two word.
 

niklar said:
Well, we are trying to run Design Analyzer of Synopsis. There is a relativly good tutorial on Verilog design.

However, the code we have is written in VHDL. Thus, we either have to "force" Design Analyzer deal with it or make a toplevel verilog code and somehow instatiate VHDL entities in it. :roll:

The problem with VHDL is that we can not find were we have to specify the technology (cmosp18). It keeps the default one - GTECH (general technology?)



------------------------------------------------------------

Hi niklar,

I'm not sure if you face this promble or not.Try to edit the ".synopsys_dc.setup" in the directory where you run the Design Analyzer!!


set target_library "slow.db " #this is your target library file
set link_library "* slow.db " #this is your library file,typically it is as same as target library file
set symbol_library "core.sdb " #this is you symbol library

set search_path "$search_path /export/home/Synopsys/libfile ." #the path for the 1st and 2nd file shown abouve

set search_path "$search_path /export/home/Synopsys/symbol" #the path for the 3rd file shown above
-----------------------------------------------------

Hope this will help you

Best Regards :oops:
 

niklar said:
Well, we are trying to run Design Analyzer of Synopsis. There is a relativly good tutorial on Verilog design.

However, the code we have is written in VHDL. Thus, we either have to "force" Design Analyzer deal with it or make a toplevel verilog code and somehow instatiate VHDL entities in it. :roll:

The problem with VHDL is that we can not find were we have to specify the technology (cmosp18). It keeps the default one - GTECH (general technology?)



------------------------------------------------------------

Hi niklar,

I'm not sure if you face this promble or not.Try to edit the ".synopsys_dc.setup" in the directory where you run the Design Analyzer!!


set target_library "slow.db " #this is your target library file
set link_library "* slow.db " #this is your library file,typically it is as same as target library file
set symbol_library "core.sdb " #this is you symbol library

set search_path "$search_path /export//Synopsys/libfile ." #the path for the 1st and 2nd file shown above

set search_path "$search_path /export//Synopsys/symbol" #the path for the 3rd file shown above
-----------------------------------------------------

Hope this will help you

Best Regards :oops:
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top