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_07_ch_07_02.vhd,v 1.2 2001-10-26 16:29:34 paw Exp $
|
23 |
|
|
-- $Revision: 1.2 $
|
24 |
|
|
--
|
25 |
|
|
-- ---------------------------------------------------------------------
|
26 |
|
|
|
27 |
|
|
entity ch_07_02 is
|
28 |
|
|
|
29 |
|
|
end entity ch_07_02;
|
30 |
|
|
|
31 |
|
|
|
32 |
|
|
----------------------------------------------------------------
|
33 |
|
|
|
34 |
|
|
|
35 |
|
|
architecture test of ch_07_02 is
|
36 |
|
|
|
37 |
|
|
constant val1 : integer := 1;
|
38 |
|
|
|
39 |
|
|
procedure p ( signal s1, s2 : in bit; val1 : in integer ) is
|
40 |
|
|
begin
|
41 |
|
|
null;
|
42 |
|
|
end procedure p;
|
43 |
|
|
|
44 |
|
|
begin
|
45 |
|
|
|
46 |
|
|
|
47 |
|
|
block_07_3_a : block is
|
48 |
|
|
|
49 |
|
|
signal s1, s2 : bit;
|
50 |
|
|
|
51 |
|
|
begin
|
52 |
|
|
|
53 |
|
|
-- code from book:
|
54 |
|
|
|
55 |
|
|
call_proc : p ( s1, s2, val1 );
|
56 |
|
|
|
57 |
|
|
-- end of code from book
|
58 |
|
|
|
59 |
|
|
end block block_07_3_a;
|
60 |
|
|
|
61 |
|
|
|
62 |
|
|
----------------
|
63 |
|
|
|
64 |
|
|
|
65 |
|
|
block_07_3_b : block is
|
66 |
|
|
|
67 |
|
|
signal s1, s2 : bit;
|
68 |
|
|
|
69 |
|
|
begin
|
70 |
|
|
|
71 |
|
|
-- code from book:
|
72 |
|
|
|
73 |
|
|
call_proc : process is
|
74 |
|
|
begin
|
75 |
|
|
p ( s1, s2, val1 );
|
76 |
|
|
wait on s1, s2;
|
77 |
|
|
end process call_proc;
|
78 |
|
|
|
79 |
|
|
-- end of code from book
|
80 |
|
|
|
81 |
|
|
end block block_07_3_b;
|
82 |
|
|
|
83 |
|
|
|
84 |
|
|
end architecture test;
|