Difficulty: Easy
Correct Answer: A name followed by a colon and the name of the library primitive
Explanation:
Introduction / Context:
Structural VHDL connects components by instantiating them with labels. The label uniquely identifies each instance in the design hierarchy for simulation, debugging, and synthesis reports.
Given Data / Assumptions:
Concept / Approach:
The canonical instantiation form is: label : entity work.entity_name port map (...); or, when using components: label : component_name port map (...); The crucial part is the label followed by a colon, then the referenced entity/component identifier.
Step-by-Step Solution:
Verification / Alternative check:
Any VHDL reference manual shows examples using the label-colon-component form. Vendor templates in IDEs auto-generate this structure.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing component instantiation (component/label) with direct entity instantiation (entity work.X), or omitting the label, which reduces readability and hierarchical traceability.
Final Answer:
A name followed by a colon and the name of the library primitive
Discussion & Comments