Menu

#85 Navigate begin end problem

open
nobody
editor (34)
5
2010-07-26
2010-07-26
stu-e
No

VHDL code:
p_ABS : process(CLOCK,RESET)
begin
if RESET = '1' then
ASIGNAL <= (ASIGNAL'high => '1', others => '0');

elsif rising\_edge\(CLOCK\) then

end if;

end process P_ABS;
If you place your cursor immediately after the 'begin' keyword and then Navigate>Go To > Matching Bracket
the cursor jumps to the 'end if' line. It should jump to the 'end process' line.

Discussion


Log in to post a comment.