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.

Does Xilinx XST understand VHDL configuration delcaration?

Status
Not open for further replies.

gongdori

Full Member level 2
Joined
Mar 7, 2012
Messages
133
Helped
21
Reputation
42
Reaction score
19
Trophy points
1,298
Activity points
2,035
Hi all,

My VHDL code contains configuration declaration. When I tried to compile the design using SXT, it failed because it couldn't find the component I binded using the "configuration" statement.
I wonder if anyone experienced the same thing. If so, how did you fix the problem?
Thanks,

Code:
configuration my_config of module_top is
for struct
    for module_A_inst : module_A
        use entity work.module_A_1(rtl)
    end for;
end for;


Gongdori
 

These Statements are used to direct the compiler to right entity and Architecture

what about to comment them and compile your small entity of module_A before your upper unit.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top