1 / 14

Chapter #9: Finite State Machine Optimization Contemporary Logic Design

Chapter #9: Finite State Machine Optimization Contemporary Logic Design. Chapter Outline. State Reduction. Motivation. State Reduction. Odd Parity Checker: two alternative state diagrams • Identical output behavior on all input strings

Télécharger la présentation

Chapter #9: Finite State Machine Optimization Contemporary Logic Design

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Chapter #9: Finite State Machine OptimizationContemporary Logic Design

  2. Chapter Outline State Reduction

  3. Motivation State Reduction Odd Parity Checker: two alternative state diagrams • Identical output behavior on all input strings • FSMs are equivalent, but require different implementations • Design state diagram without concern for # of states, Reduce later

  4. Motivation State Reduction (continued) Implement FSM with fewest possible states • Least number of flipflops • Fewest states usually leads to more opportunities for don't cares • Reduce the number of gates needed for implementation

  5. State Reduction Goal Identify and combine states that have equivalent behavior Equivalent States: for all input combinations, states transition to the same or equivalent states Odd Parity Checker: S0, S2 are equivalent states Both output a 0 Both transition to S1 on a 1 and self-loop on a 0 Algorithmic Approach • Start with state transition table • Identify states with same output behavior • If such states transition to the same next state, they are equivalent • Combine into a single new renamed state • Repeat until no new states are combined

  6. Next State Output Present State X =0 X =1 X =0 X =1 S S S 0 0 0 1 2 S S S 0 0 1 3 4 S S S 0 0 2 5 6 S S S 0 0 3 0 0 S S S 1 0 4 0 0 S S S 0 0 5 0 0 S S S 1 0 6 0 0 State Reduction Implication Chart Method State transition table:

  7. State Reduction Implication Chart Method Enumerate all possible combinations of states taken two at a time Next States Under all Input Combinations Naive Data Structure: Xij will be the same as Xji Also, can eliminate the diagonal Implication Chart

  8. State Reduction Implication Chart Filling in the Implication Chart Entry Xij — Row is Si, Column is Sj Si is equivalent to Sj if outputs are the same and next states are equivalent Xij contains the next states of Si, Sj which must be equivalent if Si and Sj are equivalent If Si, Sj have different output behavior, then Xij is crossed out Example: S0 transitions to S1 on 0, S2 on 1; S1 transitions to S3 on 0, S4 on 1; So square X<0,1> contains entries S1-S3 (transition on zero) S2-S4 (transition on one) S1-S3 S2-S4 S0 S1

  9. State Reduction Implication Chart Method S2 and S4 have different I/O behavior This implies that S1 and S0 cannot be combined Starting Implication Chart

  10. State Reduction Implication Chart Method Results of First Marking Pass Second Pass Adds No New Information S3 and S5 are equivalent S4 and S6 are equivalent This implies that S1 and S2 are too! Reduced State Transition Table

  11. State Reduction Multiple Input State Diagram Example Symbolic State Diagram State Diagram

  12. State Reduction Multiple Input Example Minimized State Table Implication Chart

  13. State Reduction Implication Chart Method Does the method solve the problem with the odd parity checker? Implication Chart S0 is equivalent to S2 since nothing contradicts this assertion!

  14. 1. Construct implication chart, one square for each combination of states taken two at a time 2. Square labeled Si, Sj, if outputs differ than square gets "X". Otherwise write down implied state pairs for all input combinations 3. Advance through chart top-to-bottom and left-to-right. If square Si, Sj contains next state pair Sm, Sn and that pair labels a square already labeled "X", then Si, Sj is labeled "X". 4. Continue executing Step 3 until no new squares are marked with "X". 5. For each remaining unmarked square Si, Sj, then Si and Sj are equivalent. State Reduction Implication Chart Method The detailed algorithm:

More Related