Forum Discussion
Altera_Forum
Honored Contributor
13 years ago --- Quote Start --- To implement what you've described you need either a state machine or a simple counter. To illustrate the concept, here is a sketch of what the process would look like The things to take away here are the following: - It takes multiple clock cycles to store the bits in the fifo because you want to serialize your data - The state machine is entered on each rising edge of the clock Kevin Jennings --- Quote End --- oooh, I get it now. Thanks!