aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1898/scale3.vhdl
blob: 30f36bd79297c574c79fe06885050989c397bbcc (plain)
1
2
3
4
5
6
7
8
9
entity scale3 is
    port(v : in bit_vector(0 to 1);
         w : out bit_vector(0 to 1));
end entity scale3;

architecture boop of scale3 is
begin
    w <= '1' and v;
end architecture boop;