bigyellow
Member level 1
- Joined
- Jan 17, 2004
- Messages
- 40
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,286
- Location
- Denmark, China
- Activity points
- 365
should it be
or
Code:
if clk'event and clk = '1' then
if reset = '0' then
------
else
if ........then
elsif.......then
-------
else
--------
end if;
end if;
end if;
or
Code:
if clk'event and clk = '1' then
if reset = '0' then
------
elsif .........then
------------
elsif ...........then
---------
else
------------
end if;
end if;