diff options
author | Tristan Gingold <tgingold@free.fr> | 2021-10-09 10:50:55 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2021-10-09 10:50:55 +0200 |
commit | 6658d50953f61fb2d3084477d2eeff9c4dd39a98 (patch) | |
tree | 0c218830e89f5a34a10b4f478f943e6647489b6f /testsuite/issues/issue159/repro2.vhdl | |
parent | 45da327776d68f189c9175d1cd236dd0ecadb527 (diff) | |
download | ghdl-yosys-plugin-6658d50953f61fb2d3084477d2eeff9c4dd39a98.tar.gz ghdl-yosys-plugin-6658d50953f61fb2d3084477d2eeff9c4dd39a98.tar.bz2 ghdl-yosys-plugin-6658d50953f61fb2d3084477d2eeff9c4dd39a98.zip |
testsuite: add tests for #159
Diffstat (limited to 'testsuite/issues/issue159/repro2.vhdl')
-rw-r--r-- | testsuite/issues/issue159/repro2.vhdl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/testsuite/issues/issue159/repro2.vhdl b/testsuite/issues/issue159/repro2.vhdl new file mode 100644 index 0000000..b230555 --- /dev/null +++ b/testsuite/issues/issue159/repro2.vhdl @@ -0,0 +1,16 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity repro2 is + port (i : std_logic; + o : out std_logic); +end; + +architecture behav of repro2 is + signal v : std_logic; +begin + process(i) + begin + o <= i or v; + end process; +end behav; |