Re: A86: a question


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

Re: A86: a question




In a message dated 9/25/98 10:12:21 PM Eastern Daylight Time, tbarwick@esn.net
writes:

> Could you do this with zero-terminated strings?  Could you display one
>  string and then have hl point to the next string in sequence?  If so, how?
>  Thanks,


use _puts

for example:


	call _homeup
	ld hl,message
	call _puts
	call _newline
	call _puts
	ret

message:
	.db "message1",0
	.db "message2",0