Re: A86: Displaying Text


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

Re: A86: Displaying Text




In a message dated 4/21/99 6:24:26 PM Pacific Daylight Time, tresh@sginet.com 
writes:

> 
>  My routine looks like this:
>  
>  	ld a,(hl)
>  	ld (_penCol),a
>  	inc hl
>  	ld a,(hl)
>  	ld (_penRow),a
>  	inc hl
>  	call _vputs
>  	djnz WriteText
>  	ret
>  

  ld hl,1+256*1
  ld (_curRow),hl 
  ld hl,text
  call _vputs
  
test:
 .db "hello


Follow-Ups: