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:
Choose an instance label, e.g., U1.Write: U1 : my_component port map ( ... signal associations ... );Optionally qualify with library/entity if not using component binding: U1 : entity work.my_entity(arch) port map (...);Simulate or synthesize; reports will list the instance by label U1.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