%INPUT_MAP%

Code that copies input signals from the entity's interface to the arrays.

If this key is found in a line of the template file during code generation, then that whole line will be copied the same number of times as there are input signals of all types, and in each copy, the %INPUT_MAP% key is replaced by an assignment statement that copies a VHDL entity input signal to an input signal in the array. The entity input signal has the same name as the corresponding input of the top-level node. Hence, the entity should be declared as in the example for %type_INPUT_NAMES%.

Generators

VHDL

Example (VHDL)

process (clk)
begin
   if clk'event and clk = '1' then
      %INPUT_MAP%
   end if;
end process;