ID:13773 VHDL error at <location>: name "<name>" used at end of construct must match name specified at beginning of construct

CAUSE: In a VHDL Design File (.vhd) at the specified location, you used the specified name at the end of a construct. However, the name does not match the name you previously specified for the construct. For example, the Architecture Body in the following code contains the name ex2 after the END keyword, but the name of the Architecture Body is specified as ex1:
ARCHITECTURE ex1 OF example IS
...
END ex2;
You must use the same name throughout the construct.

ACTION: Make sure you use the same name throughout the construct. In the previous example, you must change the name after the END keyword to ex1, or change the name you specified for the Architecture Body to ex2.