(IIRC, I haven't done this in a while) assuming you have a TI-83/83+...get an assembler (TASM is the usual one, although there are a few that claim to be better) and the standard TI include file, shove this in a text file, assemble it, sign the binary, and transfer to your calculator.t22r91s said:Ok, i know this isn't the topic but it was mentioned... How do you spell Hello World on a calculator?
CODE
.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)
ret
msg:
.db "Hello world!", 0
.end
.end
Actually I think TI-83 programs are loaded into a different address than 83+ ones, but you get the idea.
Or, you can just do CODE
Disp "Hello world!"
in TI BASIC...
Last edited by a moderator: