Forum Discussion

Altera_Forum's avatar
Altera_Forum
Icon for Honored Contributor rankHonored Contributor
11 years ago

what is the diffirent between 2 part codes

here process(current_state,data_in) begin next_state<=current_state; case current_state is when idel => if data_in='1' then next_state<=d1; else next_state<=idel; end if; ...