hi,
is it possible to program the device through the script.
I want to use quartus_pgm -c USB-Blaster -m JTAG -o P;mux2_1.sof
in my script show below.Plz correct me where I am wrong.
email::
ksharma30.AT. gmail
/////////////////////////////////////////
load_package flow
project_new test3 -overwrite
# Assign family, device, and top-level file
set_global_assignment -name FAMILY CycloneII
set_global_assignment -name DEVICE EP2C70F896C6
set_global_assignment -name VERILOG_FILE mux2_1.v
set_global_assignment -name TOP_LEVEL_ENTITY mux2_1
# Assign pins
set_location_assignment -to clk Pin_AD15
set_location_assignment -to reset Pin_T29
# compile the project
execute_flow -compile# execute_module -tool map# execute_module -tool fit# execute_module -tool tan# execute_module -tool asm# execute_module -tool eda
# Other assignments could follow
quartus_pgm -c USB-Blaster -m JTAG -o P;mux2_1.sof
project_close
//////////////////////////////////////////
Thanks