2 use IEEE.std_logic_1164.all;
3 use IEEE.numeric_std.all;
10 input_a : in unsigned(LEN-1 downto 0);
11 input_b : in unsigned(LEN-1 downto 0);
12 output1 : out unsigned(LEN-1 downto 0)
16 architecture behav of bug is
18 output1 <= minimum(input_a, input_b);