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.

instantiating a vhdl dut in verilog testbench

Status
Not open for further replies.

cganeshprabhu

Junior Member level 3
Joined
Mar 10, 2004
Messages
30
Helped
3
Reputation
6
Reaction score
0
Trophy points
1,286
Activity points
289
Hi,

how to instantiate a vhdl dut in verilog testbench ?

If it is a verilog testbench for verilog dut then it is like .....
eg:

dff dff1(list of signals)
.

Please suggest me how to do for a vhdl dut.

Regards,
Ganesh
 

There are mainly two methods to realize this function:
(1) use the tools which can conduct the mix-hdl simulation such as Modelsim and so on
(2) For VCS that is unable to implement this function, then you should follow the process below:
a. create a directory named worklib
b. under this dirctory use the vhdlan commands to map the vhdl source file into the dirctory-- vhdlan -work worklib m1.vhd
c. in the environment, instantiate the vhdl module as m1 m1_ins();
d. in the VCS options: -mhdl \
+ vhdllib+worklib.m1
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top