diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-10-10 18:32:13 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-10-10 18:32:13 +0200 |
commit | 170d114587a84c58c18c33f9f564b508f4d82544 (patch) | |
tree | b7c6f93413b839e93eac866c9d39e489cea07556 /testsuite/synth/synth58/function_test.vhdl | |
parent | cea222fe918c82de7b8ce75f3bd42c011677e06d (diff) | |
download | ghdl-170d114587a84c58c18c33f9f564b508f4d82544.tar.gz ghdl-170d114587a84c58c18c33f9f564b508f4d82544.tar.bz2 ghdl-170d114587a84c58c18c33f9f564b508f4d82544.zip |
testsuite/synth: add testcase for previous commit.
Diffstat (limited to 'testsuite/synth/synth58/function_test.vhdl')
-rw-r--r-- | testsuite/synth/synth58/function_test.vhdl | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/testsuite/synth/synth58/function_test.vhdl b/testsuite/synth/synth58/function_test.vhdl new file mode 100644 index 000000000..a612fea10 --- /dev/null +++ b/testsuite/synth/synth58/function_test.vhdl @@ -0,0 +1,31 @@ +library ieee; + use ieee.std_logic_1164.all; + +entity function_test is + generic ( + g : std_logic := '1' + ); + port ( + i : in std_logic_vector(7 downto 0); + o : out std_logic_vector(7 downto 0) + ); +end function_test; + +architecture rtl of function_test is + + function assign_value(value : in std_logic_vector(7 downto 0); + invert : in std_logic) + return std_logic_vector is + variable slv_out : std_logic_vector(7 downto 0); + begin + if invert = '0' then + slv_out := value; + elsif invert = '1' then + slv_out := not value; + end if; + return slv_out; + end; + +begin + o <= assign_value(i, g); +end rtl; |