"walala" <> wrote in message
news: om...
> Dear all,
>
> I am facing with a problem: Synopsys Design compiler does not allow my
> statement for synthesis:
>
>
> Please save me! Thank you,
>
> -Wlala
>
>
> Process(rst, clk, enable)
> if rst = '1' then
> count <= 0;
> --Line 85: elsif clk'event and clk = '1' and INPUTEND = '1' then
> ...
> end if;
>
>
Process(rst, clk, enable)
if rst = '1' then
count <= 0;
--Line 85: elsif clk'event and clk = '1' then
if(INPUTEND = '1') then
...
end if;
end if;
? Steve
|