1
0
This repository has been archived on 2024-10-30. You can view files and clone it, but cannot push or open issues or pull requests.
SEm-ExamMidterm2024/VHD/hds/ex_24_1_5/@r@t@l.vhd
2024-03-22 13:16:48 +01:00

8 lines
182 B
VHDL

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;