Advertisement
Madotsuki

Updown counters

Feb 10th, 2014
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. counter of
  2. 0000 -> 1111 -> 1110 -> 1010 loop
  3.  
  4. Make a truth table, with Q1, Q2, Q3, and Q4, and one with Q1+, Q2+, Q3+, Q4+ (the next state)
  5.  
  6. Q1 Q2 Q3 Q4 Q1+ Q2+ Q3+ Q4+
  7. 0 0 0 0 1 1 1 1
  8. 1 1 1 1 1 1 1 0
  9. 1 1 1 0 1 0 1 0
  10. 1 0 1 0 0 0 0 0
  11.  
  12. This table is a condensed version of the full table from 0000 incrementing to 1111. All the Q1+ etc are X, or Don't Care.
  13.  
  14. You now have enough info to make 4 K-maps for Q1+, Q2+, Q3+, Q4+. These K-maps will be used to make a combinational logic equation that inputs into Q1, Q2, Q3, and Q4 respectively.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement