A83: wierd happenings


[Next][Index][Thread]

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