V
valentin tihomirov
Guest
Why lables are mandatory for generate statemente? Why *else* cannot be used
with *generate*? For example, it should be quite typical situation, you have
two different implementations of the same block depending on a generic.
B1: if Param1 generate
...
end generate;
B2: if not Param1 generate
...
end generate;
Wouldn't it be more neat to allow the following implementation of generate
block:
B1: if Param1 generate
...
else
...
end generate;
???? Thanks.
with *generate*? For example, it should be quite typical situation, you have
two different implementations of the same block depending on a generic.
B1: if Param1 generate
...
end generate;
B2: if not Param1 generate
...
end generate;
Wouldn't it be more neat to allow the following implementation of generate
block:
B1: if Param1 generate
...
else
...
end generate;
???? Thanks.