↧
Answer by crj11 for If I need to access memory cell by cell, should I shift...
Both approaches are viable, depending on what you want the synthesized implementation to be.The indexed version would typically be used if you want the memory to be implemented using the internal block...
View ArticleAnswer by Dave Tweed for If I need to access memory cell by cell, should I...
Use block RAM to construct a FIFO buffer. All of the FPGA vendors have a "wizard" of some sort to help configure FIFOs, since it's such a commonly-used subcircuit.
View ArticleIf I need to access memory cell by cell, should I shift or index?
I have a piece of memory which I need to access cell by cell:parameter RAM_LENGTH = 1024;reg [7:0] mem [RAM_LENGTH - 1:0];I need to iterate cells sequentially. It looks like there are at least two ways...
View Article