0 Members and 1 Guest are viewing this topic.
.nolist#include "ti83plus.inc"#define ProgStart $9D95.list.org ProgStart - 2 .db t2ByteTok, tAsmCmp b_call(_ClrLCDFull) ld hl, 0 ld (PenCol), hl ld hl, msg b_call(_PutS) ; Display the text b_call(_NewLine) retmsg: .db "Hello world!", 0.end.end
This isn't the best thing to use though, because it lets you take "shortcuts", such as doing something like xpos = appBackUpScreen instead of xpos .equ appBackUpScreen. It's your choice though.
Quote from: thydowulays on February 13, 2012, 10:37:34 pmThis isn't the best thing to use though, because it lets you take "shortcuts", such as doing something like xpos = appBackUpScreen instead of xpos .equ appBackUpScreen. It's your choice though.I didn't even know Mimas allowed equates But = is a pretty standard substitute for .equ, and it's defined in many versions of ti83plus.inc.