-- VHDL code position: p267_ex9_6_sequence_statement_next
-- Note : This is code for explaing sequence_statement of VHDL
-- See Also: example 9-6, 9_7,
-- Debug : no debug
---------------------------------------------------------------------------------
-- 3 kinds of loop statement
NEXT --- 1
NEXT LOOP statement mark --- 2
NEXT LOOP statement mark WHEN condition expression --- 3
--- Fellowing is example anbout LOOP statement
......
L1:
FOR cnt_value IN 1 TO 8 LOOP
S1:
a( cnt_value ) := '0';
NEXT WHEN ( b=c )
S2:
a( cnt_value + 8 ) := '0';
END LOOP L1;
......