blob: 0e0b602227d1066046457480dbc92461e0fcfb9b (
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
38
39
40
41
42
43
44
45
46
|
library ieee;
use ieee.std_logic_1164.ALL;
entity child is
port (
CLK: in std_logic;
I: in std_logic;
O: out std_logic
);
end entity child;
architecture rtl of child is
signal Ialias: std_logic;
begin
process (CLK)
begin
if rising_edge(CLK) then
O <= Ialias;
end if;
end process;
Ialias <= I;
end architecture rtl;
library ieee;
use ieee.std_logic_1164.ALL;
entity top is
port (
CLK: in std_logic;
I: in std_logic;
O: out std_logic
);
end entity top;
architecture rtl of top is
component child is
port (
CLK: in std_logic;
I: in std_logic;
O: out std_logic
);
end component child;
begin
inst : child port map(CLK, I, O);
end architecture rtl;
|