Re: A86: What is the Interrupt?


[Prev][Next][Index][Thread]

Re: A86: What is the Interrupt?




At 01:45 AM 1/26/98 EST, you wrote:
>
>Does anyone know if there is a table to the length of the
>dynamic-sized font in the ROM? I would think there would be.
>If so, anyone know where?
>
It's in with the variable-width font data. Each character has a width byte,
followed by six bytes of character data. It starts at 4a1b on ROM page C.
Note that this is character 1 (ASCII code 1), not 0. The vputs routine
starts with a pointer to 4a14 and then adds char code*7 to it, since it
never prints a 0. You can also make a user variable font - more about this
later...

--Joshua


References: