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_05_ch_05_09.vhd,v 1.2 2001-10-26 16:29:33 paw Exp $
|
23
|
-- $Revision: 1.2 $
|
24
|
--
|
25
|
-- ---------------------------------------------------------------------
|
26
|
|
27
|
entity ch_05_09 is
|
28
|
|
29
|
end entity ch_05_09;
|
30
|
|
31
|
|
32
|
----------------------------------------------------------------
|
33
|
|
34
|
|
35
|
architecture test of ch_05_09 is
|
36
|
|
37
|
signal clk, reset, trigger, test0, test1 : bit := '0';
|
38
|
|
39
|
begin
|
40
|
|
41
|
|
42
|
process_05_3_h : process is
|
43
|
begin
|
44
|
|
45
|
-- code from book:
|
46
|
|
47
|
wait until clk = '1';
|
48
|
|
49
|
-- end of code from book
|
50
|
|
51
|
report "clk rising edge detected";
|
52
|
|
53
|
end process process_05_3_h;
|
54
|
|
55
|
|
56
|
----------------
|
57
|
|
58
|
|
59
|
process_05_3_i : process is
|
60
|
begin
|
61
|
|
62
|
-- code from book:
|
63
|
|
64
|
wait on clk until reset = '0';
|
65
|
|
66
|
-- end of code from book
|
67
|
|
68
|
report "synchronous reset detected";
|
69
|
|
70
|
end process process_05_3_i;
|
71
|
|
72
|
|
73
|
----------------
|
74
|
|
75
|
|
76
|
process_05_3_j : process is
|
77
|
begin
|
78
|
|
79
|
-- code from book:
|
80
|
|
81
|
wait until trigger = '1' for 1 ms;
|
82
|
|
83
|
-- end of code from book
|
84
|
|
85
|
if trigger'event and trigger = '1' then
|
86
|
report "trigger rising edge detected";
|
87
|
else
|
88
|
report "trigger timeout";
|
89
|
end if;
|
90
|
|
91
|
end process process_05_3_j;
|
92
|
|
93
|
|
94
|
----------------
|
95
|
|
96
|
|
97
|
-- code from book:
|
98
|
|
99
|
test_gen : process is
|
100
|
begin
|
101
|
test0 <= '0' after 10 ns, '1' after 20 ns, '0' after 30 ns, '1' after 40 ns;
|
102
|
test1 <= '0' after 10 ns, '1' after 30 ns;
|
103
|
wait;
|
104
|
end process test_gen;
|
105
|
|
106
|
-- end of code from book
|
107
|
|
108
|
|
109
|
----------------
|
110
|
|
111
|
|
112
|
stimulus_05_3_h_i_j : process is
|
113
|
begin
|
114
|
clk <= '1' after 10 ns, '0' after 20 ns,
|
115
|
'1' after 30 ns, '0' after 40 ns,
|
116
|
'1' after 50 ns, '0' after 60 ns,
|
117
|
'1' after 70 ns, '0' after 80 ns;
|
118
|
reset <= '1' after 45 ns, '0' after 75 ns;
|
119
|
trigger <= '1' after 10 ns, '0' after 20 ns,
|
120
|
'1' after 30 ns, '0' after 40 ns;
|
121
|
|
122
|
wait;
|
123
|
end process stimulus_05_3_h_i_j;
|
124
|
|
125
|
|
126
|
end architecture test;
|