Re: A86: a question


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

Re: A86: a question




In a message dated 9/27/98 19:28:47 Eastern Daylight Time,
uneven14@hotmail.com writes:

>  ld hl,stringblock
>   call _vputs
>   call _newline
>   add hl,1
>   call _vputs
>   call _newline
>   add hl,1
>  

don't need the "add hl,1" (besides, inc hl is much more efficient anyway)
hl already points to the byte after the first 0 it encounters.