diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-11-01 18:51:37 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-11-01 18:51:37 +0100 |
commit | 8ba9adc3f24e9761c5aae4810fae3f4529ffa9f1 (patch) | |
tree | 0877a84837476444d8ef588b4bfd7a90809f39b6 /testsuite/synth/subprg01/subprg01.vhdl | |
parent | 2b79f468513b6bc81d0d9b2f482ba8c74f7fac96 (diff) | |
download | ghdl-8ba9adc3f24e9761c5aae4810fae3f4529ffa9f1.tar.gz ghdl-8ba9adc3f24e9761c5aae4810fae3f4529ffa9f1.tar.bz2 ghdl-8ba9adc3f24e9761c5aae4810fae3f4529ffa9f1.zip |
testsuite/synth: add a test for inout variable
Diffstat (limited to 'testsuite/synth/subprg01/subprg01.vhdl')
-rw-r--r-- | testsuite/synth/subprg01/subprg01.vhdl | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/testsuite/synth/subprg01/subprg01.vhdl b/testsuite/synth/subprg01/subprg01.vhdl new file mode 100644 index 000000000..9a21cbb8c --- /dev/null +++ b/testsuite/synth/subprg01/subprg01.vhdl @@ -0,0 +1,23 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity subprg01 is + port (a : std_logic_vector (3 downto 0); + na : out std_logic_vector (3 downto 0)); +end subprg01; + +architecture behav of subprg01 is + procedure neg (v : inout std_logic_vector(3 downto 0)) is + begin + v := not v; + end neg; + +begin + process(A) + variable t : std_logic_vector(3 downto 0); + begin + t := a; + neg (t); + na <= t; + end process; +end behav; |