You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the memory of FPGA is not being used. The SoC is using LUTs as its memory, so more LUTs are being used than avaiable. It is needed to start using FPGA memory. For this to be done properly, I have to stop reading and writing memory on the same clock cycle: I will have to use one cycle to read and another to write. This implies that I will have to execute each instruction across many cycles, so a finite state machine is needed.
Implement instructions to be done in multi-cycles using a FSM so that the SoC memory really uses FPGA's memory instead of LUTs
The text was updated successfully, but these errors were encountered:
Currently, the memory of FPGA is not being used. The SoC is using LUTs as its memory, so more LUTs are being used than avaiable. It is needed to start using FPGA memory. For this to be done properly, I have to stop reading and writing memory on the same clock cycle: I will have to use one cycle to read and another to write. This implies that I will have to execute each instruction across many cycles, so a finite state machine is needed.
The text was updated successfully, but these errors were encountered: