Re:A83: Using Interups, and strings


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

Re:A83: Using Interups, and strings




<snip>


> >(More Code)
> >
> >
> >ld hl,text1
> >
> >bcall(_puts)
> >
> >text1: .db "Sample String",0
> >
> >
> >(More code)
> >
> >It only displays a bunch a garbled information when you press the right
>key.
> >How do I copy the string so it will be displayed correctly when the user
> >presses the right key.
> >
> >Thanks in advnce
> >Rob

I'm going to go out on a limb and say that you either did not include a 
"ret" statement between the bcall(_puts) and text1: .db "Sample String",0
Another problem you might have is that the values inside of (currow) and 
(curcol) are invalid.  remember the rows go from 0-7, cols from 0-15.

-harper





References: