Skip to content
Snippets Groups Projects
Commit 93edf21c authored by dam1n19's avatar dam1n19
Browse files

SOC1-207: Added comments to filelist compile script

parent de642492
No related branches found
No related tags found
No related merge requests found
...@@ -12,8 +12,10 @@ ...@@ -12,8 +12,10 @@
import argparse import argparse
import os import os
verilog_extensions = (".v", ".sv") # Files with these extensions are included in compiled filelists
verilog_extensions = (".v", ".sv", ".vh")
# Exclude paths including these strings
filelist_exclusions = ["cortex","dma"] filelist_exclusions = ["cortex","dma"]
filelist_header = """//----------------------------------------------------------------------------- filelist_header = """//-----------------------------------------------------------------------------
...@@ -89,12 +91,15 @@ def filelist_compile(args): ...@@ -89,12 +91,15 @@ def filelist_compile(args):
print("------------------") print("------------------")
print("Compiling Filelist") print("Compiling Filelist")
print("------------------") print("------------------")
# Read in filelist and add newlines to paths
filelist = read_list(input_filelist) filelist = read_list(input_filelist)
filelist = [x+"\n" for x in filelist] filelist = [x+"\n" for x in filelist]
# Create string of all paths to write out
filelist_str = filelist_header filelist_str = filelist_header
for path in filelist: filelist_str += path for path in filelist: filelist_str += path
print("Compile Done") print("Compile Done")
print("------------------") print("------------------")
# Write out output filelist
f_outlist = open(output_filelist, "w") f_outlist = open(output_filelist, "w")
f_outlist.write(filelist_str) f_outlist.write(filelist_str)
f_outlist.close() f_outlist.close()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment