blob: 356b95193f5c752da2a3ada4b631c1411d4b02c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
entity top3 is
generic (
ok : boolean := false
);
port (
clk : in bit;
inp : in bit;
outp : out bit);
end;
architecture beh of top3 is
begin
assert ok report "my assert message, value:" & bit'image(inp);
outp <= inp;
end beh;
|