blob: af6822d97ec3d67cfffb81031c84c2d6c61e6235 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package Volatile11_Pkg is
procedure Bit_Test(Input : in Integer;
Output1 : out Boolean; Output2 : out Boolean;
Output3 : out Boolean; Output4 : out Boolean;
Output5 : out Boolean; Output6 : out Boolean;
Output7 : out Boolean; Output8 : out Boolean);
type Ptr is access all Boolean;
B : aliased Boolean := False;
function F return Ptr;
end Volatile11_Pkg;
|