Re: A86: help with program
[Prev][Next][Index][Thread]
Re: A86: help with program
In a message dated 9/1/98 19:48:53, BrncAvFan2@aol.com writes:
>
>The thing about this is that I have A LOT of text to work with. After
>a
>while, all of that on all of the text that I have to write would make the
>program huge. If I called disp_string a few times, it will have cut back
>mem
>a ton. If anybody has any good routines for displaying the small font,
>could
>they help me? I mean, when you use the big font, you do something like
>this:
try this:
ld bc,$1000
ld hl,input_text_1
call display_string
ret
display_string:
ld (_penCol),bc
call _vputs
ret