-
Notifications
You must be signed in to change notification settings - Fork 0
/
CPU_tb.vhd
76 lines (55 loc) · 1.44 KB
/
CPU_tb.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
73
74
75
76
LIBRARY ieee;
USE ieee.std_logic_1164.ALL;
USE ieee.numeric_std.ALL;
ENTITY CPU_tb IS
END CPU_tb;
architecture behv of CPU_tb is
component cpu port (
clk : in std_logic;
buss : inout std_logic_vector(15 downto 0);
frombus : inout std_logic_vector(3 downto 0);
tobus : inout std_logic_vector(3 downto 0);
gr15 : out std_logic_vector(15 downto 0)
);
end component;
SIGNAL clk : std_logic := '0';
SIGNAL rst : std_logic := '0';
signal dbus : STD_LOGIC_VECTOR(15 downto 0);
signal tb_running : boolean := true;
signal dflags : std_logic_vector(6 downto 0) := "0000000";
signal tobus : std_logic_vector(3 downto 0) := "0000";
signal frombus : std_logic_vector(3 downto 0) := "0000";
signal togpu : std_logic_vector(15 downto 0) := "0000000000000000";
begin
--tile_type <= "0000";
uut: cpu port map (
clk => clk,
buss => dbus,
frombus => frombus,
tobus => tobus,
gr15 => togpu
);
-- 100 MHz system clock
clk_gen : process
begin
while tb_running loop
clk <= '0';
wait for 5 ns;
clk <= '1';
wait for 5 ns;
end loop;
wait;
end process;
stimuli_generator : process
variable i : integer;
begin
-- Aktivera reset ett litet tag.
rst <= '1';
wait for 500 ns;
wait until rising_edge(clk); -- se till att reset släpps synkront
-- med klockan
rst <= '0';
report "Reset released" severity note;
wait;
end process;
end;