diff options
Diffstat (limited to 'testsuite/issues/issue11/test_xnor.vhdl')
-rw-r--r-- | testsuite/issues/issue11/test_xnor.vhdl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testsuite/issues/issue11/test_xnor.vhdl b/testsuite/issues/issue11/test_xnor.vhdl new file mode 100644 index 0000000..4a706f0 --- /dev/null +++ b/testsuite/issues/issue11/test_xnor.vhdl @@ -0,0 +1,14 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity test_xnor is port ( + sel0, sel1: in std_logic; + c: out std_logic); +end test_xnor; + +architecture synth of test_xnor is +begin + + c <= sel1 xnor sel0; + +end synth; |