Forum Discussion
Altera_Forum
Honored Contributor
8 years agoThe alias is scoped like anything else. If you create an alias in a process, then it is only available inside that process. BUT, you can use external names to access these from outside the process.
Also remember you can declare signals inside a generate, so you could do this:
mygen : if true generate
alias a is << something >>;
begin
-- alias now visible throughout generate
end generate mygen;