-4

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?

davejal
  • 6,009
  • 10
  • 39
  • 82

1 Answers1

-1

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.

DBB
  • 467
  • 9
  • 23