aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue382/demo.vhd
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2017-07-14 07:48:14 +0200
committerTristan Gingold <tgingold@free.fr>2017-07-14 07:48:14 +0200
commitc14fe80a292695f6245dbea1df9202bf4b5a6c98 (patch)
tree5c81fa92f3bdcb6ffa56537cbfaf5cd1bfd4902a /testsuite/gna/issue382/demo.vhd
parente0ece4a694de1b31cb71f17e8d7178dab9c15893 (diff)
downloadghdl-c14fe80a292695f6245dbea1df9202bf4b5a6c98.tar.gz
ghdl-c14fe80a292695f6245dbea1df9202bf4b5a6c98.tar.bz2
ghdl-c14fe80a292695f6245dbea1df9202bf4b5a6c98.zip
Add testcase from #382
Diffstat (limited to 'testsuite/gna/issue382/demo.vhd')
-rw-r--r--testsuite/gna/issue382/demo.vhd44
1 files changed, 44 insertions, 0 deletions
diff --git a/testsuite/gna/issue382/demo.vhd b/testsuite/gna/issue382/demo.vhd
new file mode 100644
index 000000000..b52712777
--- /dev/null
+++ b/testsuite/gna/issue382/demo.vhd
@@ -0,0 +1,44 @@
+library IEEE;
+use IEEE.std_logic_1164.all;
+use IEEE.numeric_std.all;
+
+entity demo is
+ port (
+ clk,reset: in std_logic;
+ load: in std_logic;
+ load_val: in unsigned(7 downto 0);
+ qout: out unsigned(7 downto 0);
+ is5: out std_logic
+ );
+end entity;
+
+architecture v1 of demo is
+ signal q: unsigned(7 downto 0);
+begin
+ qout<=q;
+
+-- is5<='1' when q=x"05" else '0';
+
+ process(clk, reset)
+ begin
+ if reset='1' then
+ q<=(others=>'0');
+ is5<='0';
+ elsif rising_edge(clk) then
+ is5<='0';
+
+ if q=x"04" then
+ is5<='1';
+ end if;
+
+ if load='1' then
+ q<=load_val;
+ if load_val=x"05" then
+ is5<='1';
+ end if;
+ else
+ q<=q+1;
+ end if;
+ end if;
+ end process;
+end v1;