Re: A83: Display Characters...


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

Re: A83: Display Characters...




i think he meant to display the characters...
ld a,(char_num) + offset ; not sure what the offset of the chars is in order
to get them to the right char 0-9 without a lot of work
call _vputc ;is it called this or something else? havnt looked through inc
files yet
 ;get another number then do the same

>Well, do something like this
>
> ld a,x
> ld (penrow),a
> ld a,y
> ld (pencol),a
> ld hl,text
> call _vputs
>
>text:
> .db "This is the text",0
>
>/Stefan
>stefan@infi.ml.org
>
>On Thu, 14 May 1998, James Matthews wrote:
>
>>
>> Ok, here's something that will get you guys talking!!
>>
>> Ok, I made a basic program that displays a fraction to up to 256 decimal
>> places (cool, but pointless).  Anyway, I want to convert it into ASM, to
>> make it *a lot* quicker.  Ok, how do I display an integer at a given
place
>> on the graphing screen.  Basically, the equivalent to:
>>
>> text(x,y,text)
>>
>> I have a vague idea...but I want a more definite one :).
>> ____________________
>>
>> James Matthews.
>> E-mail (family):    matthews@tkb.att.ne.jp
>> E-mail (private):  james_matthews@hotmail.com
>>
>> Homepage:  http://home.att.ne.jp/gold/tomcat21/index.html
>> ICQ:  7413754
>> ____________________________________
>>
>