Slide 34 of 93
Notes:
The architecture body describes the operation of the component. There can be many different architectures described for each entity. However, for each instantiation of the entity, one of the possibly several architectures must be selected.
In the above example, the architecture body starts with the keyword ARCHITECTURE followed by the name of the architecture (e.g. half_adder_d above) and the name of the entity with which the architecture is associated. The keyword BEGIN marks the beginning of the architecture statement part which may include concurrent signal assignment statements and processes. Any signals that are used internally in the architecture description but are not found in the entity's ports are declared in the architecture’s declarative part before the BEGIN statement of the architecture body. The keyword END marks the end of the architecture body.