summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2017-09-19 16:12:54 +0200
committerNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2017-09-19 16:12:54 +0200
commit0b35af5ee0e660c810e22a09738ff1960745db23 (patch)
tree46adb210a3a4c0d70f2be5f0e4a6767860fa05e8 /data/test/CNE_01100/valid.vhd
parent8a15d57b056cf84aa9b2ae0234bf5bc432b414c3 (diff)
Fixes anonymous strings, adds CNE_01100 test.
Diffstat (limited to 'data/test/CNE_01100/valid.vhd')
-rw-r--r--data/test/CNE_01100/valid.vhd28
1 files changed, 28 insertions, 0 deletions
diff --git a/data/test/CNE_01100/valid.vhd b/data/test/CNE_01100/valid.vhd
new file mode 100644
index 0000000..41f04e2
--- /dev/null
+++ b/data/test/CNE_01100/valid.vhd
@@ -0,0 +1,28 @@
+library IEEE;
+
+use IEEE.std_logic_1164.all;
+
+entity valid is
+ port
+ (
+ ip0: in std_logic; -- $SOL:0:0$
+ b_i_ip1: in std_logic; -- $SOL:1:0$
+ not_i_ip2: in std_logic; -- $SOL:2:0$
+ o_ip3: in std_logic; -- $SOL:3:0$
+ b_ip4: in std_logic; -- $SOL:4:0$
+ op0: out std_logic; -- $SOL:5:0$
+ b_o_op1: out std_logic; -- $SOL:6:0$
+ not_o_op2: out std_logic; -- $SOL:7:0$
+ i_op3: out std_logic; -- $SOL:8:0$
+ b_op4: out std_logic; -- $SOL:9:0$
+ bp0: inout std_logic; -- $SOL:10:0$
+ o_b_bp1: inout std_logic; -- $SOL:11:0$
+ not_b_bp2: inout std_logic; -- $SOL:12:0$
+ i_bp3: inout std_logic; -- $SOL:13:0$
+ o_bp4: inout std_logic -- $SOL:14:0$
+ );
+end;
+
+architecture RTL of valid is
+begin
+end architecture;