Jump to content

Hey guys!

 

So I just got my TI-84 Plus C Silver Edition about a month ago, and want to start programming with it. Now, I understand that you can write in either TI-BASIC or Assembly to program this calculator, but as a noob to the programming world, I have no idea where to go. Can somebody please set me in the right direction for programming w/ my calculator?

 

Cheers!

Link to comment
https://linustechtips.com/topic/227044-calculator-programming/
Share on other sites

Link to post
Share on other sites

Oh assembly is really easy. Just do this:

001001010101001000101001001001010010101001010001010101010101011010100101010111010101001001001001010010010010100001001010101010010010100010010101011100111110110100101001010

 

 

 

 

 

 

 

Ok maybe its not that easy. Look up some tutorials on how to learn TI_BASIC on google or youtube. There probably is some in-depth guide by someone smart that you can follow and learn to program.

 

Having coding skills will help a lot, if you know a language like java, python, C, etc...

NEW PC build: Blank Heaven   minimalist white and black PC     Old S340 build log "White Heaven"        The "LIGHTCANON" flashlight build log        Project AntiRoll (prototype)        Custom speaker project

Spoiler

Ryzen 3950X | AMD Vega Frontier Edition | ASUS X570 Pro WS | Corsair Vengeance LPX 64GB | NZXT H500 | Seasonic Prime Fanless TX-700 | Custom loop | Coolermaster SK630 White | Logitech MX Master 2S | Samsung 980 Pro 1TB + 970 Pro 512GB | Samsung 58" 4k TV | Scarlett 2i4 | 2x AT2020

 

Link to comment
https://linustechtips.com/topic/227044-calculator-programming/#findComment-3109908
Share on other sites

Link to post
Share on other sites

Oh assembly is really easy. Just do this:

001001010101001000101001001001010010101001010001010101010101011010100101010111010101001001001001010010010010100001001010101010010010100010010101011100111110110100101001010

 

 

 

 

 

 

 

Ok maybe its not that easy. Look up some tutorials on how to learn TI_BASIC on google or youtube. There probably is some in-depth guide by someone smart that you can follow and learn to program.

 

Having coding skills will help a lot, if you know a language like java, python, C, etc...

This is more like Assembly haha :)

 

; This program displays "Hello, World!" in a windows messagebox and then quits.;; Written by Stewart Moss - May 2006;; Assemble using TASM 5.0 and TLINK32;; The output EXE is standard 4096 bytes long.; It is possible to produce really small windows PE exe files, but that; is outside of the scope of this demo..486p.model flat,STDCALLinclude win32.incextrn MessageBoxA:PROCextrn ExitProcess:PROC.dataHelloWorld db "Hello, world!",0msgTitle db "Hello world program",0.codeStart:push MB_ICONQUESTION + MB_APPLMODAL + MB_OKpush offset msgTitlepush offset HelloWorldpush 0call MessageBoxApush 0call ExitProcessendsend Start

My Current Build: 

Intel i5 3570K @ 4.4GHz 1.11V, Cooler Master Hyper 212 EVO, Asrock Z77 Extreme4, Corsair Vengeance 8GB 1600MHz, Samsung 840 EVO 250GB, Asus GTX 760 DCII Overclocked, Corsair CX600M

Link to comment
https://linustechtips.com/topic/227044-calculator-programming/#findComment-3109994
Share on other sites

Link to post
Share on other sites

 

This is more like Assembly haha :)

 

Oh ok lol :P

I must have gotten confused with machine code...

NEW PC build: Blank Heaven   minimalist white and black PC     Old S340 build log "White Heaven"        The "LIGHTCANON" flashlight build log        Project AntiRoll (prototype)        Custom speaker project

Spoiler

Ryzen 3950X | AMD Vega Frontier Edition | ASUS X570 Pro WS | Corsair Vengeance LPX 64GB | NZXT H500 | Seasonic Prime Fanless TX-700 | Custom loop | Coolermaster SK630 White | Logitech MX Master 2S | Samsung 980 Pro 1TB + 970 Pro 512GB | Samsung 58" 4k TV | Scarlett 2i4 | 2x AT2020

 

Link to comment
https://linustechtips.com/topic/227044-calculator-programming/#findComment-3110006
Share on other sites

Link to post
Share on other sites

Personally, I'd learn Assembly just because you can use that knowledge in places outside of the Texas Instrument calculators. I've been meaning to play around with my TI-84 Plus.

"Unix was not designed to stop you from doing stupid things, because that would also stop you from doing clever things." - Doug Gwyn

Link to comment
https://linustechtips.com/topic/227044-calculator-programming/#findComment-3111036
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×