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_07_fg_07_15.vhd,v 1.2 2001-10-26 16:29:34 paw Exp $
|
23
|
-- $Revision: 1.2 $
|
24
|
--
|
25
|
-- ---------------------------------------------------------------------
|
26
|
|
27
|
entity fg_07_15 is
|
28
|
end entity fg_07_15;
|
29
|
|
30
|
|
31
|
|
32
|
library ieee; use ieee.std_logic_1164.all;
|
33
|
|
34
|
architecture test of fg_07_15 is
|
35
|
|
36
|
-- code from book
|
37
|
|
38
|
procedure generate_clock ( signal clk : out std_ulogic;
|
39
|
constant Tperiod, Tpulse, Tphase : in time ) is
|
40
|
begin
|
41
|
wait for Tphase;
|
42
|
loop
|
43
|
clk <= '1', '0' after Tpulse;
|
44
|
wait for Tperiod;
|
45
|
end loop;
|
46
|
end procedure generate_clock;
|
47
|
|
48
|
-- end code from book
|
49
|
|
50
|
-- code from book (in text)
|
51
|
|
52
|
signal phi1, phi2 : std_ulogic := '0';
|
53
|
-- . . .
|
54
|
|
55
|
-- end code from book
|
56
|
|
57
|
begin
|
58
|
|
59
|
-- code from book (in text)
|
60
|
|
61
|
gen_phi1 : generate_clock ( phi1, Tperiod => 50 ns, Tpulse => 20 ns,
|
62
|
Tphase => 0 ns );
|
63
|
|
64
|
gen_phi2 : generate_clock ( phi2, Tperiod => 50 ns, Tpulse => 20 ns,
|
65
|
Tphase => 25 ns );
|
66
|
|
67
|
-- end code from book
|
68
|
|
69
|
end architecture test;
|