blob: ea030acae8c44b16500f3759999489c6d2f5e206 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
library ieee;
use ieee.std_logic_1164.all;
entity testCaseGood is
port (outPad : out std_logic;
inPad : in std_logic_vector(3 downto 0)
);
end entity testCaseGood;
architecture behavioral of testCaseGood is
component subBlock is
port (outPort : out std_logic;
inPort : in std_logic_vector(3 downto 0)
);
end component subBlock;
begin
xsubBlock : subBlock
port map (outPort => outPad,
inPort => inPad
);
end architecture behavioral;
|