architecture RTL of ex_07_1 is begin process(gainIn) begin gainOut <= resize(gainIn, gainOut'length) + shift_left(resize(gainIn, gainOut'length), 1); end process; end RTL;