Re: A86: _puts


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

Re: A86: _puts




hey thanks, that worked perfectly  :)

BlAsTo1414


> load the position into hl, then to pencol: (for _vputs)
>  	ld hl,$0201
>  	ld (_penCol),hl
>  would start at pixel (2,1)
>  
>  for _puts, use _curRow and swap row&col:
>  	ld hl,$0102
>  	ld (_curRow),hl
>  starts in char cell (2,1)
>  
>  -josh


Follow-Ups: