-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed issue with outputs that have identical names to record elements
- Loading branch information
Showing
3 changed files
with
38 additions
and
4 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
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,24 @@ | ||
library ieee; | ||
use ieee.std_logic_1164.all; | ||
|
||
entity tst is | ||
port ( | ||
outp : out std_logic | ||
); | ||
end tst; | ||
|
||
architecture arch of tst is | ||
type r is record | ||
outp : std_logic; | ||
end record; | ||
signal ok_1,ok_2,parsing_problem : r; | ||
begin | ||
|
||
ok_1 <= ( outp => '1'); | ||
|
||
p : process | ||
begin | ||
ok_2.outp <= '1'; | ||
parsing_problem <= (outp => '1'); | ||
end process; | ||
end arch; |