1
|
|
2
|
-- Copyright (C) 1996 Morgan Kaufmann Publishers, Inc
|
3
|
|
4
|
-- This file is part of VESTs (Vhdl tESTs).
|
5
|
|
6
|
-- VESTs is free software; you can redistribute it and/or modify it
|
7
|
-- under the terms of the GNU General Public License as published by the
|
8
|
-- Free Software Foundation; either version 2 of the License, or (at
|
9
|
-- your option) any later version.
|
10
|
|
11
|
-- VESTs is distributed in the hope that it will be useful, but WITHOUT
|
12
|
-- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
13
|
-- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
14
|
-- for more details.
|
15
|
|
16
|
-- You should have received a copy of the GNU General Public License
|
17
|
-- along with VESTs; if not, write to the Free Software Foundation,
|
18
|
-- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
19
|
|
20
|
-- ---------------------------------------------------------------------
|
21
|
--
|
22
|
-- $Id: ch_15_crtl.vhd,v 1.3 2001-11-03 23:19:37 paw Exp $
|
23
|
-- $Revision: 1.3 $
|
24
|
--
|
25
|
-- ---------------------------------------------------------------------
|
26
|
|
27
|
library ieee;
|
28
|
use ieee.std_logic_1164.all;
|
29
|
|
30
|
use work.dlx_types.all,
|
31
|
work.alu_types.all,
|
32
|
work.reg_file_types.all;
|
33
|
|
34
|
entity controller is
|
35
|
generic ( Tpd_clk_ctrl, Tpd_clk_const : delay_length;
|
36
|
debug : dlx_debug_control := none );
|
37
|
port ( phi1, phi2 : in std_logic;
|
38
|
reset : in std_logic;
|
39
|
halt : out std_logic;
|
40
|
width : out dlx_mem_width;
|
41
|
write_enable : out std_logic;
|
42
|
mem_enable : out std_logic;
|
43
|
ifetch : out std_logic;
|
44
|
ready : in std_logic;
|
45
|
alu_in_latch_en : out std_logic;
|
46
|
alu_function : out alu_func;
|
47
|
alu_zero, alu_negative, alu_overflow : in std_logic;
|
48
|
reg_s1_addr, reg_s2_addr, reg_dest_addr : out reg_file_addr;
|
49
|
reg_write : out std_logic;
|
50
|
c_latch_en : out std_logic;
|
51
|
a_latch_en, a_out_en : out std_logic;
|
52
|
b_latch_en, b_out_en : out std_logic;
|
53
|
temp_latch_en, temp_out_en1, temp_out_en2 : out std_logic;
|
54
|
iar_latch_en, iar_out_en1, iar_out_en2 : out std_logic;
|
55
|
pc_latch_en, pc_out_en1, pc_out_en2 : out std_logic;
|
56
|
mar_latch_en, mar_out_en1, mar_out_en2 : out std_logic;
|
57
|
mem_addr_mux_sel : out std_logic;
|
58
|
mdr_latch_en, mdr_out_en1, mdr_out_en2, mdr_out_en3 : out std_logic;
|
59
|
mdr_mux_sel : out std_logic;
|
60
|
ir_latch_en : out std_logic;
|
61
|
ir_immed1_size_26, ir_immed2_size_26 : out std_logic;
|
62
|
ir_immed1_unsigned, ir_immed2_unsigned : out std_logic;
|
63
|
ir_immed1_en, ir_immed2_en : out std_logic;
|
64
|
current_instruction : in dlx_word;
|
65
|
mem_addr : std_logic_vector(1 downto 0);
|
66
|
const1, const2 : out dlx_word );
|
67
|
end entity controller;
|