URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [mp3/] [sim/] [run/] [run_sim] - Rev 266
Go to most recent revision | Compare with Previous | Blame | View Log
#!/bin/csh -f
ncprep -f ../bin/nc.scr
#debussy -f ../bin/nc.scr
#nLint -f ../bin/nc.scr
#verilog -f ../bin/nc.scr
# mv ncverilog.log ../log/ncverilog.log
ncvlog -f ncvlog.args
if ($status != 0) then
exit
endif
# Run the NC-Verilog elaborator (build the design hierarchy)
ncelab -f ncelab.args
if ($status != 0) then
exit
endif
# Run the NC-Verilog simulator (simulate the design)
ncsim -f ncsim.args && \
mv flash.log ../log && \
mv executed.log ../log && \
mv sram.log ../log
Go to most recent revision | Compare with Previous | Blame | View Log