aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue882/cpu.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/synth/issue882/cpu.vhdl')
-rw-r--r--testsuite/synth/issue882/cpu.vhdl13
1 files changed, 13 insertions, 0 deletions
diff --git a/testsuite/synth/issue882/cpu.vhdl b/testsuite/synth/issue882/cpu.vhdl
new file mode 100644
index 000000000..28229eeb4
--- /dev/null
+++ b/testsuite/synth/issue882/cpu.vhdl
@@ -0,0 +1,13 @@
+library ieee;
+use ieee.std_logic_1164.all;
+
+entity cpu is
+ port (
+ test : out std_logic_vector(7 downto 0)
+ );
+end cpu;
+
+architecture rtl of cpu is
+begin
+ test <= "00000000";
+end rtl;