diff options
Diffstat (limited to 'testsuite/gna/ticket94/asrc.vhd')
-rw-r--r-- | testsuite/gna/ticket94/asrc.vhd | 14 |
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; |