--- Quote Start ---
Hi,
Here is the tcl script that I use to generate a .jic file automatically after assembly.
set module
if {
# Include commands here that are run after the assember
post_message "Running after assembler"
set cmd "quartus_cpf -c your_projectname_here.cof"
# If the command can't be run, return an error.
if { } {
return -code error $input
}
}
Just save it as "generate_jic_programming_file.tcl" and add this to the Quartus settings file (.qsf):
set_global_assignment -name POST_MODULE_SCRIPT_FILE "quartus_sh:generate_jic_programming_file.tcl"
And you should save your "Convert Programming files" settings in a .cof file. That file will be used by the script
--- Quote End ---
hi,
What's .cof file?!