Home | History | Annotate | Download | only in common

Lines Matching refs:states

29 $states{"pop"} = 255;    # Add the "pop"  to the list of defined state names.
62 if ($states{$state_name} != 0) {
65 $states{$state_name} = $num_states;
161 # We read all states first, before writing anything, so that the state numbers
162 # for the destination states are all available to be written.
184 # Check that all of the destination states have been defined
187 $states{"exit"} = 0; # Predefined state name, terminates state machine.
189 if ($states{$state_dest_state[$state]} == 0 && $state_dest_state[$state] ne "exit") {
193 if ($state_push_state[$state] ne "" && $states{$state_push_state[$state]} == 0) {
302 print " $states{$state_dest_state[$state]},";
309 print " $states{$state_push_state[$state]},";
400 print " {doNOP, 0, 0, 0, TRUE}\n"; # State 0 is a dummy. Real states start with index = 1.
409 print " $states{$state_dest_state[$state]},";
416 print " $states{$state_push_state[$state]},";