aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/oper02/min01.vhdl
blob: 1a90db24d120d5bf42a5d3ee8dde1ffc2f4414d6 (plain)
1
2
3
4
5
6
7
8
9
entity min01 is
  port (a, b : natural;
        o : out natural);
end min01;

architecture behav of min01 is
begin
  o <= minimum (a, b);
end behav;