I came across this
free program today wile looking for a binary of the New Courier font.
CFE_64 will let one make fonts easily with its excellent 32/64bit Windows GUI. It also lets you output the code in Motorola asm syntax, and also choose between 8bit (byte) or 16bit(word) format, which is compatible with 65Org16.
Motorola asm file has the syntax "dc.w 0x0000, 0x00FF,0xFFFF,etc". All that is needed are 2 'find and replace' operations in a text editor to make it more palettable for As65/HXA 65Org16 Assemblers. Replace "dc.w" with ".BYTE" and replace "0x" with "$" and you have your font pixel data file!
You can set the MAX to 64bits wide by 64bits high...