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_03_tb_03_03.vhd,v 1.3 2001-10-26 16:29:33 paw Exp $
|
23 |
|
|
-- $Revision: 1.3 $
|
24 |
|
|
--
|
25 |
|
|
-- ---------------------------------------------------------------------
|
26 |
|
|
|
27 |
|
|
entity test_bench_03_03 is
|
28 |
|
|
end entity test_bench_03_03;
|
29 |
|
|
|
30 |
|
|
library ieee;
|
31 |
|
|
use ieee.std_logic_1164.all;
|
32 |
|
|
|
33 |
|
|
architecture test_mux4_demo of test_bench_03_03 is
|
34 |
|
|
|
35 |
|
|
signal sel : work.test_bench_03_02.sel_range := 0;
|
36 |
|
|
signal d0, d1, d2, d3, z : std_ulogic;
|
37 |
|
|
|
38 |
|
|
begin
|
39 |
|
|
|
40 |
|
|
dut : entity work.mux4(demo)
|
41 |
|
|
port map ( sel => sel,
|
42 |
|
|
d0 => d0, d1 => d1, d2 => d2, d3 => d3,
|
43 |
|
|
z => z );
|
44 |
|
|
|
45 |
|
|
stimulus : process is
|
46 |
|
|
begin
|
47 |
|
|
wait for 5 ns;
|
48 |
|
|
d0 <= '1'; wait for 5 ns;
|
49 |
|
|
d1 <= 'H'; wait for 5 ns;
|
50 |
|
|
sel <= 1; wait for 5 ns;
|
51 |
|
|
d1 <= 'L'; wait for 5 ns;
|
52 |
|
|
sel <= 2; wait for 5 ns;
|
53 |
|
|
d0 <= '0'; wait for 5 ns;
|
54 |
|
|
d2 <= '1'; wait for 5 ns;
|
55 |
|
|
d2 <= '0'; wait for 5 ns;
|
56 |
|
|
sel <= 3; wait for 5 ns;
|
57 |
|
|
d3 <= '1'; wait for 5 ns;
|
58 |
|
|
d3 <= '0'; wait for 5 ns;
|
59 |
|
|
|
60 |
|
|
wait;
|
61 |
|
|
end process stimulus;
|
62 |
|
|
|
63 |
|
|
end architecture test_mux4_demo;
|