diff options
author | Pepijn de Vos <pepijndevos@gmail.com> | 2019-05-28 19:06:48 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-05-28 19:06:48 +0200 |
commit | 7619ac406427a30e2963e11ad67b43b6aae26ee5 (patch) | |
tree | f4e76290176d7ba88a1069f13e723b3254d8a890 /testsuite/synth/dff01/dff10.vhdl | |
parent | ddae75977eac872eecaa7c3f45003f6bb1ecd068 (diff) | |
download | ghdl-7619ac406427a30e2963e11ad67b43b6aae26ee5.tar.gz ghdl-7619ac406427a30e2963e11ad67b43b6aae26ee5.tar.bz2 ghdl-7619ac406427a30e2963e11ad67b43b6aae26ee5.zip |
synth: add support for constants.
Close #815
Diffstat (limited to 'testsuite/synth/dff01/dff10.vhdl')
-rw-r--r-- | testsuite/synth/dff01/dff10.vhdl | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/testsuite/synth/dff01/dff10.vhdl b/testsuite/synth/dff01/dff10.vhdl new file mode 100644 index 000000000..86af44865 --- /dev/null +++ b/testsuite/synth/dff01/dff10.vhdl @@ -0,0 +1,25 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity dff10 is + port (q : out std_logic_vector(7 downto 0); + d : std_logic_vector(7 downto 0); + clk : std_logic; + rst : std_logic; + en : std_logic); +end dff10; + +architecture behav of dff10 is +begin + process (clk) is + constant rval : std_logic_vector(7 downto 0) := x"55"; + begin + if rst = '1' then + q <= rval; + elsif rising_edge (clk) then + if en = '1' then + q <= d; + end if; + end if; + end process; +end behav; |