nineleo
Newbie level 5
I wrote a TCL script to compile the verilog file,e.g.
#!/usr/bin/tclsh
exec vlib work
exec vmap work work
exec vlog -fast \
+define+DDR \
# +define+VGA \
top.v \
top_tb.v
there is error in the sixth line(comment line) when run it.
But if change it to c-shell script, there will be ok.
why?
how to correct it?
#!/usr/bin/tclsh
exec vlib work
exec vmap work work
exec vlog -fast \
+define+DDR \
# +define+VGA \
top.v \
top_tb.v
there is error in the sixth line(comment line) when run it.
But if change it to c-shell script, there will be ok.
why?
how to correct it?