Re: A86: Stuff


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

Re: A86: Stuff




I bet they gave up on the C++ thing.  This is how you display small text:

	ld hl,$0000		;this is where you want it to be
	ld (_penCol),hl	;move the pen row and column
	ld hl,Text		;text
	call _vputs		;puts the text in small writing
	ret				;return

Text:
	.db "This is small text",0

This will display the text at 0,0.

Dan   



In a message dated 11/30/1998 2:00:16 PM Mountain Standard Time,
cyanide1@juno.com writes:

<< There is a demo (screenshots) of a C++ IDE on ticalc.org, but I can't
 find the program itself. Does anyone know anything about it? Also, how do
 you print small text on the screen (like the "Text(" command)? >>