diff options
author | Tristan Gingold <tgingold@free.fr> | 2020-04-07 06:45:21 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2020-04-07 06:45:21 +0200 |
commit | 8a5f5b65103fac0974e2aca3c95361764503f3f5 (patch) | |
tree | 7dcbfa0fb49f90846e01b645b4a21b377c8b69fb /testsuite/issues/issue102 | |
parent | 768e1f7a45ae1c818eea631d5a8fb79775e34108 (diff) | |
download | ghdl-yosys-plugin-8a5f5b65103fac0974e2aca3c95361764503f3f5.tar.gz ghdl-yosys-plugin-8a5f5b65103fac0974e2aca3c95361764503f3f5.tar.bz2 ghdl-yosys-plugin-8a5f5b65103fac0974e2aca3c95361764503f3f5.zip |
Add a test for #102
Diffstat (limited to 'testsuite/issues/issue102')
-rw-r--r-- | testsuite/issues/issue102/counters_8.vhdl | 25 | ||||
-rwxr-xr-x | testsuite/issues/issue102/testsuite.sh | 9 |
2 files changed, 34 insertions, 0 deletions
diff --git a/testsuite/issues/issue102/counters_8.vhdl b/testsuite/issues/issue102/counters_8.vhdl new file mode 100644 index 0000000..57ff057 --- /dev/null +++ b/testsuite/issues/issue102/counters_8.vhdl @@ -0,0 +1,25 @@ +library ieee; +use ieee.std_logic_1164.all; +use ieee.std_logic_arith.all; + +entity counters_8 is + generic (MAX : integer := 12); + port(C, CLR : in std_logic; + Q : out integer range 0 to MAX-1); +end counters_8; + +architecture archi of counters_8 is + signal cnt : integer range 0 to MAX-1; +begin + process (C, CLR) + begin + if (CLR='1') then + cnt <= 0; + elsif (rising_edge(C)) then + cnt <= (cnt + 1) mod MAX ; + end if; + end process; + + Q <= cnt; + +end archi; diff --git a/testsuite/issues/issue102/testsuite.sh b/testsuite/issues/issue102/testsuite.sh new file mode 100755 index 0000000..8dd56b9 --- /dev/null +++ b/testsuite/issues/issue102/testsuite.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +topdir=../.. +. $topdir/testenv.sh + +synth_import -fsynopsys counters_8.vhdl -e + +clean +echo OK |