1
|
|
2
|
-- Copyright (C) 2001 Bill Billowitch.
|
3
|
|
4
|
-- Some of the work to develop this test suite was done with Air Force
|
5
|
-- support. The Air Force and Bill Billowitch assume no
|
6
|
-- responsibilities for this software.
|
7
|
|
8
|
-- This file is part of VESTs (Vhdl tESTs).
|
9
|
|
10
|
-- VESTs is free software; you can redistribute it and/or modify it
|
11
|
-- under the terms of the GNU General Public License as published by the
|
12
|
-- Free Software Foundation; either version 2 of the License, or (at
|
13
|
-- your option) any later version.
|
14
|
|
15
|
-- VESTs is distributed in the hope that it will be useful, but WITHOUT
|
16
|
-- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
17
|
-- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
18
|
-- for more details.
|
19
|
|
20
|
-- You should have received a copy of the GNU General Public License
|
21
|
-- along with VESTs; if not, write to the Free Software Foundation,
|
22
|
-- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
23
|
|
24
|
-- ---------------------------------------------------------------------
|
25
|
--
|
26
|
-- $Id: tc1039.vhd,v 1.2 2001-10-26 16:29:38 paw Exp $
|
27
|
-- $Revision: 1.2 $
|
28
|
--
|
29
|
-- ---------------------------------------------------------------------
|
30
|
|
31
|
package c06s04b00x00p02n01i01039pkg is
|
32
|
type THREE is range 1 to 3;
|
33
|
type A1 is array (THREE) of BOOLEAN;
|
34
|
type A3 is array (THREE) of A1;
|
35
|
function Af3(g : integer) return A3;
|
36
|
end c06s04b00x00p02n01i01039pkg;
|
37
|
|
38
|
package body c06s04b00x00p02n01i01039pkg is
|
39
|
function Af3(g : integer) return A3 is
|
40
|
variable vaf1 : A3;
|
41
|
begin
|
42
|
return Vaf1;
|
43
|
end Af3;
|
44
|
end c06s04b00x00p02n01i01039pkg;
|
45
|
|
46
|
use work.c06s04b00x00p02n01i01039pkg.all;
|
47
|
ENTITY c06s04b00x00p02n01i01039ent IS
|
48
|
generic (g : integer := 2);
|
49
|
port (PT: BOOLEAN) ;
|
50
|
attribute AT3 : A3;
|
51
|
attribute AT3 of PT : signal is Af3(g) ;
|
52
|
END c06s04b00x00p02n01i01039ent;
|
53
|
|
54
|
ARCHITECTURE c06s04b00x00p02n01i01039arch OF c06s04b00x00p02n01i01039ent IS
|
55
|
|
56
|
BEGIN
|
57
|
TESTING: PROCESS
|
58
|
variable V: BOOLEAN;
|
59
|
BEGIN
|
60
|
V := PT'AT3(1)(3);
|
61
|
assert NOT(V=false)
|
62
|
report "***PASSED TEST: c06s04b00x00p02n01i01039"
|
63
|
severity NOTE;
|
64
|
assert (V=false)
|
65
|
report "***FAILED TEST: c06s04b00x00p02n01i01039 - Indexed name be an attribute test failed."
|
66
|
severity ERROR;
|
67
|
wait;
|
68
|
END PROCESS TESTING;
|
69
|
|
70
|
END c06s04b00x00p02n01i01039arch;
|