diff options
Diffstat (limited to 'testsuite/synth/issue937/bnot.vhdl')
-rw-r--r-- | testsuite/synth/issue937/bnot.vhdl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testsuite/synth/issue937/bnot.vhdl b/testsuite/synth/issue937/bnot.vhdl new file mode 100644 index 000000000..6c21b2c2f --- /dev/null +++ b/testsuite/synth/issue937/bnot.vhdl @@ -0,0 +1,12 @@ +entity bnot is + port ( + i : in bit; + o : out bit + ); +end entity; + +architecture a of bnot is +begin + o <= not i; +end; + |