Nios® V/II Embedded Design Suite (EDS)
Support for Embedded Development Tools, Processors (SoCs and Nios® V/II processor), Embedded Development Suites (EDSs), Boot and Configuration, Operating Systems, C and C++

Mixing Verilog and VHDL

Altera_Forum
Honored Contributor II
1,117 Views

I have to connect logic written in Verilog with logic written in VHDL. 

I've tried with Quartus 4.1. 

 

here is the code of the Verilog file: 

dsp_dummy    dsp_dummy_inst (     .clock ( clock ),     .reset ( null ),     .enable ( eins ),     .stall ( null ),     .wb_dat_io ( wb_dat_io ),     .wb_adr_i ( address_mem ),               .wb_we_i ( wb_we_i ),     .wb_stb_i ( wb_stb_i ),     .wb_ack_o ( wb_ack_o )          ); 

 

I've added the file dsp_dummy.vhdl to the project. When I try to compile it, I get the following error: 

Error: Node instance dsp_dummy_inst instantiates undefined entity dsp_dummy 

I don't know, what I've done wrong. Can anyone help me?
0 Kudos
1 Reply
Altera_Forum
Honored Contributor II
437 Views

check the bdf or the pin list.  

That's the error I get when I don't have something hooked up right.
0 Kudos
Reply