Forum Discussion

Altera_Forum's avatar
Altera_Forum
Icon for Honored Contributor rankHonored Contributor
21 years ago

Mixing Verilog and VHDL

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?

1 Reply

  • Altera_Forum's avatar
    Altera_Forum
    Icon for Honored Contributor rankHonored Contributor

    check the bdf or the pin list.

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