diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-10-01 06:10:29 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-10-01 06:10:29 +0200 |
commit | 7dadb10612db2ba3d8507c59ed3491fc810e91c9 (patch) | |
tree | 0a4c6eeaf9785b0453b15895df1e91cc783344c6 /testsuite/synth/issue955/ent1.vhdl | |
parent | a7d9aa91b5a9f4847edf71c80b70cfec6d646fd9 (diff) | |
download | ghdl-7dadb10612db2ba3d8507c59ed3491fc810e91c9.tar.gz ghdl-7dadb10612db2ba3d8507c59ed3491fc810e91c9.tar.bz2 ghdl-7dadb10612db2ba3d8507c59ed3491fc810e91c9.zip |
testsuite/synth: add testcase for #955
Diffstat (limited to 'testsuite/synth/issue955/ent1.vhdl')
-rw-r--r-- | testsuite/synth/issue955/ent1.vhdl | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/testsuite/synth/issue955/ent1.vhdl b/testsuite/synth/issue955/ent1.vhdl new file mode 100644 index 000000000..68c0f9c06 --- /dev/null +++ b/testsuite/synth/issue955/ent1.vhdl @@ -0,0 +1,25 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity ent1 is + port ( + clk : in std_logic; + o : out std_logic_vector (0 to 7) + ); +end ent1; + +architecture a of ent1 is + type reg_t is array(0 to 7) of std_logic_vector(0 to 7); + + signal reg : reg_t := (x"10", x"11", x"12", x"13", + x"14", x"15", x"16", x"17"); +begin + process(clk) + begin + if rising_edge(clk) then + reg <= reg(1 to 7) & x"00"; + end if; + end process; + + o <= reg (0); +end; |