DEBSOURCES
Skip Quicknav
sources / ghdl / 5.0.1%2Bdfsg-1 / testsuite / synth / issue937 / bnot.vhdl
123456789101112
entity bnot is port ( i : in bit; o : out bit ); end entity; architecture a of bnot is begin o <= not i; end;