aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue937/bnot.vhdl
blob: 6c21b2c2f05086abd0daf82115157f7b437897b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
entity bnot is
    port (
        i : in bit;
        o : out bit
    );
end entity;

architecture a of bnot is
begin
  o <= not i;
end;