Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robatron/ti89calc
Assembly programs for my TI-89 Titanium calculator, written in C
https://github.com/robatron/ti89calc
Last synced: about 1 month ago
JSON representation
Assembly programs for my TI-89 Titanium calculator, written in C
- Host: GitHub
- URL: https://github.com/robatron/ti89calc
- Owner: robatron
- Created: 2011-01-17T04:18:43.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2011-01-19T08:53:03.000Z (almost 14 years ago)
- Last Synced: 2024-10-19T01:09:33.463Z (2 months ago)
- Language: C
- Homepage:
- Size: 1.64 MB
- Stars: 5
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TI-89 Titanium Calculator Projects
Assembly programs for my TI-89 Titanium calculator, written in C
## About
I was successful in setting up a develpment environment for programming my TI-89 Titanium calculator in C using Linux (Ubuntu 10.04 LTS). This is an attempt at sharing my experiences.
## Setting up the environment
So you want to program your TI-89 calculator in C on Linux, eh? Here's how I did it with Ubuntu 10.04 LTS:
### TIGCC
[TIGCC](http://tigcc.ticalc.org) allows you to write programs for your calculator in C and compile them into assembly. Unfortunatly, it was made for Windows, but it's nothing a little [Wine](http://www.winehq.org/) can't handle.
#### Install Wine
sudo apt-get install wine#### Download and install TIGCC
Download the latest version [here](http://tigcc.ticalc.org/download.html) (I'm using v0.95), unzip it, and run the installer. Be sure to install the "third party" tools when the installer asks.
### TiLP
[TiLP](http://lpg.ticalc.org/prj_tilp) is a program that allows you to transfer files to and from your calculator. You can use it to transfer your compiled programs to your calculator. Luckily installing it is as easy as:
sudo apt-get install tilp2
and running it is as easy as:
sudo tilp
When the program is running, right click on the left pane (the calculator side) and select "Change device". Chances are, TiLP will have detected your calculator automatically. Double click on it, and you should be in buisiness.
To transfer a compiled program, just drag it from the right pane (the file browser) to the left pane (the calculator) in the "variables" folder.
## Resources
* [TIGCC home page](http://tigcc.ticalc.org/) - Home page of the C compiler for TI calculators.
* [TIGCC manual](http://tigcc.ticalc.org/manual.html) - Manual for the TIGCC compiler.
* [Techno-Plaza TI calculator programming tutorials](http://www.technoplaza.net/programming/) - C programming tutorials using the TIGCC compiler and TiEmu calculator emulator.
* [TiEmu home page](http://lpg.ticalc.org/prj_tiemu/) - Home page for the TiEmu cross-platform TI calculator emulator.
* [TiLP home page](http://lpg.ticalc.org/prj_tilp) - Home page for the TiLP calculator linking program that allows you to connect your calculator to your computer to transfer files, etc.