Re: A86: _vputs


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

Re: A86: _vputs




_penCol and _penRow contain the cursor position for the small font

example:
	ld bc,$2814
	ld (_penCol),bc			;x=20, y=40
	ld hl,message
	call _vputs


message:
	.db "hello, world",0



In a message dated 3/28/99 6:31:12 PM Eastern Standard Time, v8r@juno.com
writes:

> My name is Chris and I have just started programming in assembly (I feel
>  like I'm joining one of those cheesy self help groups).  Anyways I
>  started messing around with the _vputs call as the small ti font looks
>  alot better than the 5 X 7 and I came across a problem.  I can't figure
>  out how to move the pen position (current x, y position) before _vput ing
>  some text....


Follow-Ups: