aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/issues/issue73/multi.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/issues/issue73/multi.vhdl')
-rw-r--r--testsuite/issues/issue73/multi.vhdl27
1 files changed, 27 insertions, 0 deletions
diff --git a/testsuite/issues/issue73/multi.vhdl b/testsuite/issues/issue73/multi.vhdl
new file mode 100644
index 0000000..3255b26
--- /dev/null
+++ b/testsuite/issues/issue73/multi.vhdl
@@ -0,0 +1,27 @@
+library ieee;
+use ieee.std_logic_1164.all;
+
+entity cell1 is
+ port (
+ O: out std_logic
+ );
+end entity cell1;
+
+architecture rtl of cell1 is
+begin
+ O <= '0';
+end architecture rtl;
+
+library ieee;
+use ieee.std_logic_1164.all;
+
+entity cell2 is
+ port (
+ O: out std_logic
+ );
+end entity cell2;
+
+architecture rtl of cell2 is
+begin
+ O <= '1';
+end architecture rtl;