Yes I know a FPGA is not a CPU. And I could also put a processor (like a 8031) in an FPGA, as an IP block. ALTERA has such a cpu useable with QUARTUS II.
But this is not my question. I am designing a sequencer build with a CYCLONE III or IV (because of the PLL, a CYCLONE would probably be sufficient). It will deliver VGA signals (simple) and also some drawings, text and graphics. It seems to be possible to produce lines, rectangles, perhaps circles only by formulas on the fly, because a ROM pattern takes too much resource. For the text I think the best solution would be to use a ROM FONT TABLE.
AND MY PROBLEM IS to write this source table, especially to fill in with a nice pattern. I have no criteria about the font, a simple ARIAL will be good. Would it be .hex, or .bin, or VHDL or C language, no problem.
I need only uppercase and lowercase letters and digits, then 62 characters. Based upon an initial 5x7 matrix rounded to 8 bytes par character for the 1 size it would represent about 8000 bytes for the 4x size. Quite impossible to write this manually.
I hope I have explained exactly what I am looking for.