-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasic_gates_using_NOR_tb.vhdl
67 lines (52 loc) · 1.12 KB
/
basic_gates_using_NOR_tb.vhdl
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
LIBRARY ieee;
USE ieee.std_logic_1164.all;
ENTITY basic_gates_using_NOR_tb IS END basic_gates_using_NOR_tb;
ARCHITECTURE LogicFunc_tb OF basic_gates_using_NOR_tb IS
component tbc is
port (
clk : bit;
a, b : IN STD_LOGIC;
And2, Or2, Nota : OUT STD_LOGIC);
END COMPONENT;
CONSTANT period : TIME := 50 ns;
signal clk : BIT := '0';
signal done : boolean := false;
signal a, b : STD_LOGIC := '0';
signal And2, Or2, Nota : STD_LOGIC;
begin
u1 : tbc
port map(
clk => clk,
a => a,
b => b,
And2 => And2,
Or2 => Or2,
Nota => Nota);
clkprocess: process(done, clk)
begin
if (not done) then
clk <= not clk after period / 2;
end if;
end process;
And2 <= (a NOR a) NOR (b NOR b);
Or2 <= (a NOR b) NOR (a NOR b);
Nota <= a NOR a;
testbench: process
begin
wait until (clk = '0');
a <= '0';
b <= '0';
wait for period;
a <= '0';
b <= '1';
wait for period;
a <= '1';
b <= '0';
wait for period;
a <= '1';
b <= '1';
wait for period;
done <= true;
wait;
end process;
end LogicFunc_tb;