A83: Re: wierd happenings


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

A83: Re: wierd happenings




I need to see more of the routine to figure out what's happening.... A
register is probably just getting messed up or something.

Joe Wingbermuehle
http://www.usmo.com/~joewing/

-----Original Message-----
From: Chris Hiszpanski <mecad@scv.net>
To: assembly digest <assembly-83-digest@lists.ticalc.org>
Date: Monday, August 31, 1998 6:35 PM
Subject: A83: wierd happenings


>
>Below is what I am not sure of. But first what happens. I got about 300
>words to scroll using the arrow keys on the home screen. But the beginnings
>of some words are cut off like:
>first
>second
>third
>
>would be:
>
>rst
>d
>hird
>
>they are cut off in no pattern some of the words loop like first first
>first first. i'm using this routine given to me by Joe.
>
> ld e,(hl) ;routine thanks to Joe W.
> ld d,0
> ld hl,WORDS
> add hl,de
> call _puts
>
>WORDS:
>.db "first",0
>.db "second",0
>.db "third",0
>.db "fourth",0
>.db "and so on",0
>
>Any help?
>
>From: Chris
>mecad@scv.net
>