diff options
author | Tristan Gingold | 2014-12-07 11:40:58 +0100 |
---|---|---|
committer | Tristan Gingold | 2014-12-07 11:40:58 +0100 |
commit | 2f4337f027ec97dd93642ea2db70873e9192fb3b (patch) | |
tree | d8c63b4cef84e33bae4e7018ce7abc07e0e3bd3c /testsuite/gna/perf02/cmp_662.vhd | |
parent | abe17103c669922a7349a7b2238d440b24d29f30 (diff) | |
download | ghdl-2f4337f027ec97dd93642ea2db70873e9192fb3b.tar.gz ghdl-2f4337f027ec97dd93642ea2db70873e9192fb3b.tar.bz2 ghdl-2f4337f027ec97dd93642ea2db70873e9192fb3b.zip |
Add perf02 (performance issue).
Diffstat (limited to 'testsuite/gna/perf02/cmp_662.vhd')
-rw-r--r-- | testsuite/gna/perf02/cmp_662.vhd | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/testsuite/gna/perf02/cmp_662.vhd b/testsuite/gna/perf02/cmp_662.vhd new file mode 100644 index 0000000..13f373e --- /dev/null +++ b/testsuite/gna/perf02/cmp_662.vhd @@ -0,0 +1,26 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity cmp_662 is + port ( + in1 : in std_logic_vector(31 downto 0); + in0 : in std_logic_vector(31 downto 0); + eq : out std_logic + ); +end cmp_662; + +architecture augh of cmp_662 is + + signal tmp : std_logic; + +begin + + -- Compute the result + tmp <= + '0' when in1 /= in0 else + '1'; + + -- Set the outputs + eq <= tmp; + +end architecture; |