A86: external strings
[Prev][Next][Index][Thread]
A86: external strings
I am having trouble trying to read an external string
from an assembly program. Can I just do:
start:
ld hl,string-1
rst $20
rst $10
jr c,start
;Can I just inc hl a certain number
of times to get to the place in the string that I want to read from???
What should I do??
string:
.db
6,"string"
Thanks a bunch,