RE: A83: ZiLOG App Dev question on multi-line text
[Prev][Next][Index][Thread]
RE: A83: ZiLOG App Dev question on multi-line text
Hey there,
Check your ti83plus.inc for _NewLine...if it isn't in there, the equate is:
_NewLine EQU 452Eh
Regards,
James.
> -----Original Message-----
> From: owner-assembly-83@lists.ticalc.org
> [mailto:owner-assembly-83@lists.ticalc.org]On Behalf Of Zac
> Sent: 18 December 2000 19:37
> To: assembly-83@lists.ticalc.org
> Subject: A83: ZiLOG App Dev question on multi-line text
>
>
>
> When i use ZiLOG's Dev program for TI-83+ APPS i can display text but
> i cant get it to do multi-line text? How do you display multiline text
> with this compiler?
>
> My current source code is:
>
> (header)
> B_CALL ClrLCDFull
> xor a
> ld (curCol),a
> ld a, 3
> ld (curRow),a
> ld hl, TEXT
> ld de, OP1
> B_CALL StrCopy
> ld hl, OP1
> B_CALL PutS
> B_CALL GetKey
> B_JUMP JForceCmdNoChar
> TEXT:
> DB "Text Test"
>
> But putting:
> TEXT:
> DB "Line 1"
> DB "Line 2",0
> Just outputs "Line 1Line 2"
>
>
Follow-Ups:
References: