A
Amit
hi group,
is it possible to use CASE STATEMENT for such a condition as:
if (X > 10) then
z <= z1;
elsif (x < 10) then
z <= z2;
else
z <= z3;
end if;
as far as I know we cannot do :
case x is
when > 10 =>
z <= z1;
and ...
any idea?
cheers.
is it possible to use CASE STATEMENT for such a condition as:
if (X > 10) then
z <= z1;
elsif (x < 10) then
z <= z2;
else
z <= z3;
end if;
as far as I know we cannot do :
case x is
when > 10 =>
z <= z1;
and ...
any idea?
cheers.