Skip to content

Instantly share code, notes, and snippets.

@debugger22
Last active August 29, 2015 13:57
Show Gist options
  • Save debugger22/9532245 to your computer and use it in GitHub Desktop.
Save debugger22/9532245 to your computer and use it in GitHub Desktop.
4 Bit Ripple Counter Output
INITIAL STATE
[0, 0, 0, 0]
TRIGGERING THE COUNTER SEQUENTIALLY 2^4 + 1 times
[0, 0, 0, 0]
[0, 0, 0, 1]
[0, 0, 1, 0]
[0, 0, 1, 1]
[0, 1, 0, 0]
[0, 1, 0, 1]
[0, 1, 1, 0]
[0, 1, 1, 1]
[1, 0, 0, 0]
[1, 0, 0, 1]
[1, 0, 1, 0]
[1, 0, 1, 1]
[1, 1, 0, 0]
[1, 1, 0, 1]
[1, 1, 1, 0]
[1, 1, 1, 1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment