0 Members and 1 Guest are viewing this topic.
penCol equ 86D7hpenRow equ 86D8h
.Coordinate=Y*256+XText(30*256+20)Text "Stuff"
Text(20,30,"Stuff")
.Coordinate=X*256+YOutput(20*256+30)Disp "Stuff"
Output(20,30,"Stuff")
The same applies for text drawn to the home screen:Code: [Select].Coordinate=X*256+YOutput(20*256+30)Disp "Stuff"Is smaller than:Code: [Select]Output(20,30,"Stuff")By even more, 8 bytes.
From ti83plus.inc:Code: [Select]penCol equ 86D7hpenRow equ 86D8hAlso, a little-known fact regarding printing text at constant coordinates:Code: [Select].Coordinate=Y*256+XText(30*256+20)Text "Stuff"Is 7 bytes smaller than: Code: [Select]Text(20,30,"Stuff")The same applies for text drawn to the home screen:Code: [Select].Coordinate=X*256+YOutput(20*256+30)Disp "Stuff"Is smaller than:Code: [Select]Output(20,30,"Stuff")By even more, 8 bytes.
Runer, what do you mean by Text "Stuff"? Do you mean Text("Stuff")? (Which doesn't seem to work btw) I mean, how do you get Text without parentheses?
I didn't know you could use Text "Stuff" syntax