blob: a22edae17acf1f054d6e72084f2a1282eb9f4448 (
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
|
library ieee;
use ieee.std_logic_1164.all;
entity block02 is
port (q : out std_logic;
d : std_logic;
clk : std_logic);
end block02;
architecture behav of block02 is
begin
b1 : block
signal s : std_logic;
begin
process (clk) is
begin
if rising_edge (clk) then
s <= d;
end if;
end process;
q <= s;
end block b1;
end behav;
|