Re: A86: What is the Interrupt?


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

Re: A86: What is the Interrupt?




> 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...

Thanks.