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_11_ch_11_01.vhd,v 1.2 2001-10-26 16:29:35 paw Exp $
|
23 |
|
|
-- $Revision: 1.2 $
|
24 |
|
|
--
|
25 |
|
|
-- ---------------------------------------------------------------------
|
26 |
|
|
|
27 |
|
|
entity ch_11_01 is
|
28 |
|
|
|
29 |
|
|
end entity ch_11_01;
|
30 |
|
|
|
31 |
|
|
|
32 |
|
|
----------------------------------------------------------------
|
33 |
|
|
|
34 |
|
|
|
35 |
|
|
architecture test of ch_11_01 is
|
36 |
|
|
|
37 |
|
|
type MVL4_ulogic is ('X', '0', '1', 'Z'); -- unresolved logic type
|
38 |
|
|
|
39 |
|
|
-- code from book:
|
40 |
|
|
|
41 |
|
|
type small_int is range 1 to 4;
|
42 |
|
|
type small_array is array (small_int range <>) of -- . . . ;
|
43 |
|
|
-- not in book
|
44 |
|
|
MVL4_ulogic;
|
45 |
|
|
-- end not in book
|
46 |
|
|
|
47 |
|
|
-- end of code from book
|
48 |
|
|
|
49 |
|
|
type table is array (MVL4_ulogic, MVL4_ulogic) of MVL4_ulogic;
|
50 |
|
|
constant resolution_table : table :=
|
51 |
|
|
-- 'X' '0' '1' 'Z'
|
52 |
|
|
-- ------------------
|
53 |
|
|
( ( 'X', 'X', 'X', 'X' ), -- 'X'
|
54 |
|
|
( 'X', '0', 'X', '0' ), -- '0'
|
55 |
|
|
( 'X', 'X', '1', '1' ), -- '1'
|
56 |
|
|
( 'X', '0', '1', 'Z' ) ); -- 'Z'
|
57 |
|
|
|
58 |
|
|
function resolve_MVL4 ( contribution : small_array ) return MVL4_ulogic is
|
59 |
|
|
variable result : MVL4_ulogic := 'Z';
|
60 |
|
|
begin
|
61 |
|
|
for index in contribution'range loop
|
62 |
|
|
result := resolution_table(result, contribution(index));
|
63 |
|
|
end loop;
|
64 |
|
|
return result;
|
65 |
|
|
end function resolve_MVL4;
|
66 |
|
|
|
67 |
|
|
subtype MVL4_logic is resolve_MVL4 MVL4_ulogic;
|
68 |
|
|
|
69 |
|
|
signal s : MVL4_logic;
|
70 |
|
|
|
71 |
|
|
begin
|
72 |
|
|
|
73 |
|
|
driver_1 : s <= 'Z';
|
74 |
|
|
|
75 |
|
|
driver_2 : s <= 'Z';
|
76 |
|
|
|
77 |
|
|
driver_3 : s <= 'Z';
|
78 |
|
|
|
79 |
|
|
driver_4 : s <= 'Z';
|
80 |
|
|
|
81 |
|
|
driver_5 : s <= 'Z';
|
82 |
|
|
|
83 |
|
|
end architecture test;
|