-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
117fb26
commit 0f13fc6
Showing
2 changed files
with
98 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
[options] | ||
mode bmc | ||
depth 1 | ||
expect fail | ||
|
||
[engines] | ||
smtbmc | ||
|
||
[script] | ||
verific -vhdl subsub.vhd | ||
verific -vhdl sub.vhd | ||
verific -vhdl top.vhd | ||
hierarchy -top top | ||
hierarchy -top \\sub(p=41)\(rtl) | ||
|
||
[file top.vhd] | ||
library ieee; | ||
use ieee.std_logic_1164.all; | ||
use ieee.numeric_std.all; | ||
|
||
entity top is | ||
port ( | ||
a : in integer | ||
); | ||
end entity; | ||
|
||
architecture rtl of top is | ||
component sub is | ||
generic ( | ||
p : integer | ||
); | ||
port ( | ||
a : in integer | ||
); | ||
end component; | ||
begin | ||
sub_i: sub | ||
generic map ( | ||
p => 41 | ||
) | ||
port map ( | ||
a => a | ||
); | ||
end architecture; | ||
|
||
[file sub.vhd] | ||
library ieee; | ||
use ieee.std_logic_1164.all; | ||
use ieee.numeric_std.all; | ||
|
||
entity sub is | ||
generic ( | ||
p : integer := 99 | ||
); | ||
port ( | ||
a : in integer | ||
); | ||
end entity; | ||
|
||
architecture rtl of sub is | ||
component subsub is | ||
generic ( | ||
p : integer | ||
); | ||
port ( | ||
a : in integer | ||
); | ||
end component; | ||
begin | ||
subsub_i: subsub | ||
generic map ( | ||
p => p + 1 | ||
) | ||
port map ( | ||
a => a | ||
); | ||
end architecture; | ||
|
||
[file subsub.vhd] | ||
library ieee; | ||
use ieee.std_logic_1164.all; | ||
use ieee.numeric_std.all; | ||
|
||
entity subsub is | ||
generic ( | ||
p : integer := 99 | ||
); | ||
port ( | ||
a : in integer | ||
); | ||
end entity; | ||
|
||
architecture rtl of subsub is | ||
begin | ||
assert (p > a); | ||
end architecture; |