Change Simulation Mode #255
-
I have generated an eFPGA fabric and want to simulate it in Serial Mode which according to documentation is Mode 0. But I can't understand like what parameter/variable to change so that I am operating in Serial Mode(Mode 0). |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @dishant1602, there currently is just code for the parallel configuration in the testbench. If you have own code for simulating in serial mode, then you should be able to use it without giving any parameter/variable. The fabric can automatically switch between the modes, depending on where it receives data. If (for whatever reason) data is received through multpile ports the priority is:
This is all defined in Hope this helps! |
Beta Was this translation helpful? Give feedback.
Hi @dishant1602,
there currently is just code for the parallel configuration in the testbench. If you have own code for simulating in serial mode, then you should be able to use it without giving any parameter/variable. The fabric can automatically switch between the modes, depending on where it receives data. If (for whatever reason) data is received through multpile ports the priority is:
This is all defined in
$name_of_your_project/Fabric/eFPGA_Config.v
if you want to take a closer look.Hope this helps!