Reputation: 93
I have a data bus of width [127:0]
which is 128 bits.
I have data of [4095:0]
which is 32769 bits .
I want to send continuously this 4Kb data through data bus.
How can I do this?
Upvotes: -4
Views: 516
Reputation: 487
I think you can just split up the data into 128 bits and send it. In case you need to do it ever clock you can always store it into a FIFO take a huge chunk of data. Split and send. Then take another chunk.
Upvotes: -1