blob: 9933cb6e612ea4dc6917c494f095586714420535 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
library ieee;
use ieee.std_logic_1164.all;
entity unit_a is
port (
clk : in std_logic;
reset : in std_logic;
a : in std_logic;
b : out std_logic
);
end entity;
library ieee;
use ieee.std_logic_1164.all;
entity unit_b is
port (
clk : in std_logic;
reset : in std_logic;
a : in std_logic;
b : out std_logic
);
end entity;
architecture rtl of unit_a is
begin
my_inst: entity work.unit_b
port map (
clk => clk,
reset => reset,
a => a,
b => b
);
end architecture;
|