-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpc_behav.vhdl
60 lines (55 loc) · 1.27 KB
/
pc_behav.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
library ieee; use ieee.numeric_std.all;
architecture behav of pc is
signal pc, pc_int: word;
begin
logic: process(all) is
variable adder: word;
begin
if pdsel = '1' then
adder := std_logic_vector(unsigned(pc) + 1);
elsif pdsel = '0' then
adder := std_logic_vector(unsigned(pc) + unsigned(ix));
end if;
if pcsel = '0' then
pc_int <= adder;
elsif pcsel = '1' then
pc_int <= ix;
end if;
end process logic;
reg: process(clk, res_n) is
begin
if res_n = '0' then
pc <= (others => '0');
elsif clk = '1' and clk'event then
if pcena = '1' then
pc <= pc_int;
end if;
end if;
end process reg;
pc_output: process(all) is
begin
if easel = '1' then
ea <= pc;
else
ea <= (others => 'Z');
end if;
if edsel = reg_pc then
ed <= pc;
else
ed <= (others => 'Z');
end if;
end process pc_output;
lookahead: process(all) is
begin
if next_easel = '1' then
next_ea <= pc when pcena = '0' else pc_int;
else
next_ea <= (others => 'Z');
end if;
if next_edsel = reg_pc then
next_ed <= pc when pcena = '0' else pc_int;
else
next_ed <= (others => 'Z');
end if;
end process lookahead;
end architecture behav;