fix top/model separation for rtl vs. post-syn/par sim

This commit is contained in:
Harrison Liew
2023-02-24 20:37:36 -08:00
parent 58590f2abe
commit a681bedae0
2 changed files with 7 additions and 1 deletions

View File

@@ -118,6 +118,12 @@ endif
$(SYN_CONF): $(VLSI_RTL)
mkdir -p $(dir $@)
echo "sim.inputs:" > $@
echo " input_files:" >> $@
for x in $(VLSI_RTL); do \
echo ' - "'$$x'"' >> $@; \
done
echo " input_files_meta: 'append'" >> $@
echo "synthesis.inputs:" >> $@
echo " top_module: $(VLSI_TOP)" >> $@
echo " input_files:" >> $@