INteresting Question.
I am not sure what / where you got the .asm files from.
I am not sure what part type you are looking to design into, but I will give you a generic reply in the hopes that it will cover you needs. Ask more if this does not help you.
Assuming you are targeting an FPGA, you will start with either an HDL file (like VHDL or Verilog) or you might use just schematic based inputs.
This (or these) file(s) will then get processed by Quartus as input.
If not typing errors (syntax) then the tool will progress to give you a .sof file.
This file can be downloaded into the FPGA - it will only be there while the power is applied to the FPGA.
On power up, or if certain signals are toggled in a certain order, then you can make the FPGA get loaded from an external source (like a prom device).
This is where the .pof file comes in.
You tell the tools co convert the .sof file into a .pof file so that you can program the configuration device with it.
As to the .asm file to get to .hex file.
Is this a software file that makes an .asm output?
Do you have an embedded processor in the FPGA?
Is this the code for that processor?
There are processes for including that file into the .pof file (if needed).
You should do a lot of WEB reading on the altera WEB page and take some of the free online training classes to put all this together better.
I hope this helps.
Avatar