1 |
d93979b7
|
Arnaud Dieumegard
|
|
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_13_fg_13_02.vhd,v 1.2 2001-10-26 16:29:35 paw Exp $
|
23 |
|
|
-- $Revision: 1.2 $
|
24 |
|
|
--
|
25 |
|
|
-- ---------------------------------------------------------------------
|
26 |
|
|
|
27 |
|
|
library ieee; use ieee.std_logic_1164.all;
|
28 |
|
|
|
29 |
|
|
package serial_interface_defs is
|
30 |
|
|
|
31 |
|
|
subtype reg_address_vector is std_logic_vector(1 downto 0);
|
32 |
|
|
|
33 |
|
|
constant status_reg_address : reg_address_vector := B"00";
|
34 |
|
|
constant control_reg_address : reg_address_vector := B"01";
|
35 |
|
|
constant rx_data_register : reg_address_vector := B"10";
|
36 |
|
|
constant tx_data_register : reg_address_vector := B"11";
|
37 |
|
|
|
38 |
|
|
subtype data_vector is std_logic_vector(7 downto 0);
|
39 |
|
|
|
40 |
|
|
-- . . . -- other useful declarations
|
41 |
|
|
|
42 |
|
|
component serial_interface is
|
43 |
|
|
port ( clock_phi1, clock_phi2 : in std_logic;
|
44 |
|
|
serial_select : in std_logic;
|
45 |
|
|
reg_address : in reg_address_vector;
|
46 |
|
|
data : inout data_vector;
|
47 |
|
|
interrupt_request : out std_logic;
|
48 |
|
|
rx_serial_data : in std_logic;
|
49 |
|
|
tx_serial_data : out std_logic );
|
50 |
|
|
end component serial_interface;
|
51 |
|
|
|
52 |
|
|
end package serial_interface_defs;
|