summaryrefslogtreecommitdiff
path: root/testsuite/gna/ticket94/asrc.vhd
diff options
context:
space:
mode:
authorTristan Gingold2015-09-26 05:55:02 +0200
committerTristan Gingold2015-09-26 05:55:02 +0200
commitd46e4f35422e107db1edfbcc97e3624fc3965b7f (patch)
tree8cb7e2e548689b2b02782f09155294b5a4763859 /testsuite/gna/ticket94/asrc.vhd
parentabd02c225a47ad960bb7d4044d9ad0b50e2d83d6 (diff)
downloadghdl-d46e4f35422e107db1edfbcc97e3624fc3965b7f.tar.gz
ghdl-d46e4f35422e107db1edfbcc97e3624fc3965b7f.tar.bz2
ghdl-d46e4f35422e107db1edfbcc97e3624fc3965b7f.zip
ticket94 reproducer
Diffstat (limited to 'testsuite/gna/ticket94/asrc.vhd')
-rw-r--r--testsuite/gna/ticket94/asrc.vhd14
1 files changed, 14 insertions, 0 deletions
diff --git a/testsuite/gna/ticket94/asrc.vhd b/testsuite/gna/ticket94/asrc.vhd
new file mode 100644
index 0000000..d65c812
--- /dev/null
+++ b/testsuite/gna/ticket94/asrc.vhd
@@ -0,0 +1,14 @@
+
+library ieee;
+use ieee.std_logic_1164.all;
+
+entity acomp is
+ port (x: in std_ulogic; y: out std_ulogic);
+end entity;
+
+architecture aarch of acomp is
+begin
+
+ y <= x;
+
+end architecture;