blob: f6fd480fa818ac87508c0e86b04b37d1ce04fda8 (
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
|
library ieee;
use ieee.std_logic_1164.all;
entity repro1 is
port (aclr : std_logic;
clk : std_logic;
din : std_logic;
dout : out std_logic);
end;
architecture behav of repro1 is
signal r : std_logic;
begin
process (aclr, clk) is
begin
if rising_edge (clk) then
r <= din;
end if;
if aclr = '1' then
r <= '0';
end if;
end process;
dout <= r;
end behav;
|