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
I am currently attempting to simulate FlooNoC using ModelSim but seem to be missing some files required for the simulation. Although I have already compiled all the files in the hw folder using vlog, there are still a few files that appear to be missing. Could you please guide me on where to locate the following files or confirm if they might be in a different folder within the FlooNoC repository?
axi_pkg
the floo_pkg.sv uses signal types defined in axi_pkg, however, I am unable to locate this file
cf_math_pkg
the floo_meta_buffer.sv uses signal types defined in cf_math_pkg, however, I am unable to locate this file
axi/typedef.svh
axi/assign.svh
idma/typedef.svh
common_cells/registers.svh
common_cells/assertions.svh
floo_noc/typedef.svh
So far, I am missing these files, however, please let me know if I need to add other files to properly simulate FlooNoC.
Thanks
The text was updated successfully, but these errors were encountered:
Those files are header files that are in the include directories of the bender dependencies. The dependencies are pulled in by bender and typically stored in the .bender folder. Also, bender automatically creates compile scripts (e.g. bender script vsim -t some_targets), which also adds the include directories to the compilation script. All of this is handled in the Makefile, for instance when you do make compile-sim. You might want to have a look at the Bender.yml file to see what dependencies FlooNoC, as well as the bender documentation.
Hi,
I am currently attempting to simulate FlooNoC using ModelSim but seem to be missing some files required for the simulation. Although I have already compiled all the files in the hw folder using vlog, there are still a few files that appear to be missing. Could you please guide me on where to locate the following files or confirm if they might be in a different folder within the FlooNoC repository?
So far, I am missing these files, however, please let me know if I need to add other files to properly simulate FlooNoC.
Thanks
The text was updated successfully, but these errors were encountered: