-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTest_PC.vhd
72 lines (53 loc) · 1.31 KB
/
Test_PC.vhd
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
68
69
70
71
72
LIBRARY ieee;
USE ieee.std_logic_1164.ALL;
ENTITY Test_PC IS
END Test_PC;
ARCHITECTURE behavior OF Test_PC IS
-- Component Declaration for the Unit Under Test (UUT)
COMPONENT pc
PORT(
clk : IN std_logic;
rst : IN std_logic;
address : IN std_logic_vector(31 downto 0);
sig : OUT std_logic_vector(31 downto 0)
);
END COMPONENT;
--Inputs
signal clk : std_logic := '0';
signal rst : std_logic := '0';
signal address : std_logic_vector(31 downto 0) := (others => '0');
--Outputs
signal sig : std_logic_vector(31 downto 0);
-- Clock period definitions
constant clk_period : time := 10 ns;
BEGIN
-- Instantiate the Unit Under Test (UUT)
uut: pc PORT MAP (
clk => clk,
rst => rst,
address => address,
sig => sig
);
-- Clock process definitions
clk_process :process
begin
clk <= '0';
wait for clk_period/2;
clk <= '1';
wait for clk_period/2;
end process;
-- Stimulus process
stim_proc: process
begin
-- hold reset state for 100 ns.
address <= x"FFFFFFFF";
wait for 200 ns;
rst <= '1';
wait for 100 ns;
rst <= '0';
wait for 50 ns;
address <= x"11111111";
-- insert stimulus here
wait;
end process;
END;