Forum Discussion
Altera_Forum
Honored Contributor
14 years agoNote that when you have the Convert Programming File window set up how you want it you can save the configuration as a *.COF file.
You can then create a *.tcl file to run the conversion, the following uses JIC_conversion.cof and is saved as generate_jic.tcl... >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> set module [lindex $quartus(args) 0] if [string match "quartus_asm" $module] { # Include commands here that are run after the assember post_message "Running after assembler" set cmd "quartus_cpf -c JIC_conversion.cof" # If the command can't be run, return an error. if { [catch {open "|$cmd"} input] } { return -code error $input } } >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> ..then add a line to your *.qsf so this is automatically run at the end of every compilation....... set_global_assignment -name POST_MODULE_SCRIPT_FILE "quartus_sh:generate_jic.tcl" This has saved me a lot of time in the past (when I've forgotten to do the conversion and wondered why the problem isn't fixed). Nial.