Replicate Computerphile example #9
-
What arguments I need to pass to replicate the example shown in this video https://youtu.be/Ks1pw1X22y4?si=4bk5MuF5VXmgIhqL&t=109 ? |
Beta Was this translation helpful? Give feedback.
Answered by
Nikeshbajaj
Jan 28, 2024
Replies: 2 comments
-
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Nikeshbajaj
-
Thanks for the extended response!
…--
Isidro Arias
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As video says, it is a 4-bit LFSR with tabs (or feedback polynomial ) as [4,3] (feeback from 4th and 3rd bit) with initial state as 1001, here is a code that generate exactly the same output as in video:
You could also visualise the same LFSR as
Note that feeback-bit 1 in above figure is Not the feedback computed from current state shown in figure (1100) but from th…