| summaryrefslogtreecommitdiff |
diff options
| author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2017-09-19 16:12:54 +0200 |
|---|---|---|
| committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2017-09-19 16:12:54 +0200 |
| commit | 0b35af5ee0e660c810e22a09738ff1960745db23 (patch) | |
| tree | 46adb210a3a4c0d70f2be5f0e4a6767860fa05e8 /data/test/CNE_01100/invalid.vhd | |
| parent | 8a15d57b056cf84aa9b2ae0234bf5bc432b414c3 (diff) | |
Fixes anonymous strings, adds CNE_01100 test.
Diffstat (limited to 'data/test/CNE_01100/invalid.vhd')
| -rw-r--r-- | data/test/CNE_01100/invalid.vhd | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/data/test/CNE_01100/invalid.vhd b/data/test/CNE_01100/invalid.vhd new file mode 100644 index 0000000..3703c47 --- /dev/null +++ b/data/test/CNE_01100/invalid.vhd @@ -0,0 +1,31 @@ +library IEEE; + +use IEEE.std_logic_1164.all; + +entity invalid is + port + ( + i_ip0: in std_logic; + i_clock: in std_logic; + i_o: in std_logic; + i_o_reset: in std_logic; + i_o_b_reset: in std_logic; + i_i_reset: in std_logic; + o_ip0: out std_logic; + o_clock: out std_logic; + o_o: out std_logic; + o_i_reset: out std_logic; + o_o_reset: out std_logic; + o_o_b_reset: out std_logic; + b_ip0: inout std_logic; + b_clock: inout std_logic; + b_o: inout std_logic; + b_i_reset: inout std_logic; + b_o_reset: inout std_logic; + b_b_o_reset: inout std_logic + ); +end; + +architecture RTL of invalid is +begin +end architecture; |


