electronical
Advanced Member level 4
- Joined
- Nov 4, 2011
- Messages
- 104
- Helped
- 2
- Reputation
- 4
- Reaction score
- 2
- Trophy points
- 1,298
- Activity points
- 1,975
Hello.
I have a problem with this program . this program are complied correcty in modelsim without any error,but when I use ISE ,I face with this error?
how can I resolve this error?
who can help me?
the error:
Logic for signal <i> is controlled by a clock but does not appear to be a valid sequential description.
I have a problem with this program . this program are complied correcty in modelsim without any error,but when I use ISE ,I face with this error?
how can I resolve this error?
who can help me?
the error:
Logic for signal <i> is controlled by a clock but does not appear to be a valid sequential description.
Code:
process(clk,reset,clk_external)
variable i,s,a,c :int:=0;
begin
if reset ='1' then
s:=0;i:=0;multiple_sign:=1;
else
if (clk 'event and clk='1' )then
if (clk_external 'event and clk_external='1' ) then
i:=1;s:=0;--multiple_sign:=1;
else
i:=i+1;
end if;
end if;