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_19_tb-src.vhd,v 1.3 2001-10-26 16:29:36 paw Exp $
|
23 |
|
|
-- $Revision: 1.3 $
|
24 |
|
|
--
|
25 |
|
|
-- ---------------------------------------------------------------------
|
26 |
|
|
|
27 |
|
|
library qsim;
|
28 |
|
|
library random;
|
29 |
|
|
|
30 |
|
|
use std.textio.all;
|
31 |
|
|
use qsim.qsim_types.all;
|
32 |
|
|
use random.random.all;
|
33 |
|
|
|
34 |
|
|
architecture source of test_bench is
|
35 |
|
|
|
36 |
|
|
signal a : arc_type;
|
37 |
|
|
signal info_detail : info_detail_type := trace;
|
38 |
|
|
|
39 |
|
|
begin
|
40 |
|
|
|
41 |
|
|
source1 : entity qsim.source(behavior)
|
42 |
|
|
generic map ( name => "source1",
|
43 |
|
|
distribution => fixed, mean_inter_arrival_time => 100 ns,
|
44 |
|
|
seed => sample_seeds(0),
|
45 |
|
|
time_unit => ns,
|
46 |
|
|
info_file_name => "source1.dat" )
|
47 |
|
|
port map ( out_arc => a,
|
48 |
|
|
info_detail => info_detail );
|
49 |
|
|
|
50 |
|
|
monitor : process is
|
51 |
|
|
|
52 |
|
|
variable L : line;
|
53 |
|
|
|
54 |
|
|
begin
|
55 |
|
|
wait on a;
|
56 |
|
|
write(L, string'("monitor: at "));
|
57 |
|
|
write(L, now, unit => ns);
|
58 |
|
|
write(L, string'(" received "));
|
59 |
|
|
write(L, a.token, ns);
|
60 |
|
|
writeline(output, L);
|
61 |
|
|
end process monitor;
|
62 |
|
|
|
63 |
|
|
end architecture source;
|