-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
TriageContains a M(n)WE to be processed by GHA (issue-runner)Contains a M(n)WE to be processed by GHA (issue-runner)
Description
entity ent is
generic (
max : natural);
port (
p : out natural range 1 to max := 3);
end entity;
architecture a of ent is
begin
end;entity ent2 is
end entity;
architecture a of ent2 is
constant max : natural := 2;
signal p : natural range 1 to max;
begin
inst : entity work.ent
generic map (max => max)
port map (p => p);
end;ghdl --version
ghdl -a ent.vhd
ghdl -a ent2.vhd
ghdl --elab-run ent2Metadata
Metadata
Assignees
Labels
TriageContains a M(n)WE to be processed by GHA (issue-runner)Contains a M(n)WE to be processed by GHA (issue-runner)