
FTOHEX  Convert assembly output file to INTEL-HEX format suitable for, say,
a GTEK prom programmer.
 
    ftohex format infile outfile
 
Example:
    dasm -f2 example.asm -oexample.out
    ftohex 2 example.out example.hex
 
    This program converts and output file generated by DASM to the Intel
    hex-ascii format.  You must specify the format you used when you
    assembled the source for FTOHEX to properly read the out file.
    Generally format 2 is used for assembly (see dasm.txt) as this
    generates the smallest hex file.

