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

8 lines
182 B
VHDL
Raw Normal View History

2024-03-22 12:16:48 +00:00
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;