aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/dff01/dff09.vhdl
diff options
context:
space:
mode:
authorPepijn de Vos <pepijndevos@gmail.com>2019-05-28 19:06:48 +0200
committerTristan Gingold <tgingold@free.fr>2019-05-28 19:06:48 +0200
commit7619ac406427a30e2963e11ad67b43b6aae26ee5 (patch)
treef4e76290176d7ba88a1069f13e723b3254d8a890 /testsuite/synth/dff01/dff09.vhdl
parentddae75977eac872eecaa7c3f45003f6bb1ecd068 (diff)
downloadghdl-7619ac406427a30e2963e11ad67b43b6aae26ee5.tar.gz
ghdl-7619ac406427a30e2963e11ad67b43b6aae26ee5.tar.bz2
ghdl-7619ac406427a30e2963e11ad67b43b6aae26ee5.zip
synth: add support for constants.
Close #815
Diffstat (limited to 'testsuite/synth/dff01/dff09.vhdl')
-rw-r--r--testsuite/synth/dff01/dff09.vhdl22
1 files changed, 22 insertions, 0 deletions
diff --git a/testsuite/synth/dff01/dff09.vhdl b/testsuite/synth/dff01/dff09.vhdl
new file mode 100644
index 000000000..9dcf4065a
--- /dev/null
+++ b/testsuite/synth/dff01/dff09.vhdl
@@ -0,0 +1,22 @@
+library ieee;
+use ieee.std_logic_1164.all;
+
+entity dff09 is
+ port (q : out std_logic;
+ d : std_logic;
+ clk : std_logic;
+ rstn : std_logic);
+end dff09;
+
+architecture behav of dff09 is
+begin
+ process (clk, rstn) is
+ constant rval : std_logic := '0';
+ begin
+ if rstn = '0' then
+ q <= rval;
+ elsif rising_edge (clk) then
+ q <= d;
+ end if;
+ end process;
+end behav;