-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add dependency scanning as a testcase.
- Loading branch information
Showing
3 changed files
with
78 additions
and
72 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,17 @@ | ||
library IEEE; | ||
use IEEE.std_logic_1164.all; | ||
|
||
library libraryCommon; | ||
use libraryCommon.P1.all; | ||
library libCommon; | ||
use libCommon.P1.all; | ||
|
||
entity A1 is | ||
|
||
port ( | ||
signal Clock : in std_logic | ||
); | ||
end entity; | ||
|
||
architecture rtl of A1 is | ||
|
||
begin | ||
|
||
end architecture; | ||
|
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 |
---|---|---|
@@ -1,16 +1,20 @@ | ||
library IEEE; | ||
use IEEE.std_logic_1164.all; | ||
|
||
library libraryCommon; | ||
use libraryCommon.P2.all; | ||
library libCommon; | ||
use libCommon.P2.all; | ||
|
||
entity A2 is | ||
|
||
port ( | ||
signal Clock : in std_logic | ||
); | ||
end entity; | ||
|
||
architecture rtl of A2 is | ||
|
||
begin | ||
a : entity work.A1 | ||
port ( | ||
|
||
port map ( | ||
Clock => Clock | ||
); | ||
end architecture; |
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