A83: ZiLOG App Dev question on multi-line text
[Prev][Next][Index][Thread]
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: