Menu

Tree [2b0f6b] main /
 History

HTTPS access


File Date Author Commit
 build-etc 2020-10-09 Noah Noah [4de978] add pacman hook
 doc 2011-04-07 Matthew Iselin Matthew Iselin [bdadf7] Initial git commit. Completely rewritten code f...
 src 2020-10-15 Noah Noah [2b0f6b] myString( token working
 tests 2020-10-15 Noah Noah [2b0f6b] myString( token working
 .gitignore 2020-10-08 Noah Noah [d7cdcd] minor changes
 LICENSE 2020-10-08 Noah Noah [4be4f1] adding my name
 Makefile 2020-10-08 Noah Noah [868b4f] get rid of weird flag
 README.md 2020-10-09 Noah Vogt Noah Vogt [ae0e4e] added way to install on windows
 win-installer.bat 2020-10-10 Noah Noah [2c63c9] change language

Read Me

The TI-BASIC Compiler (tibasicc)

The TI-BASIC Compiler is all about compiling TI-BASIC code on your computer into an .8xp file ready for transferring to your TI-83/TI-83+/TI-84 calculator (and vice versa).

Being able to type your programs on a real keyboard instead of the calculator's keypad is much easier and avoids some otherwise big pain.

Note: This project is a fork from pcmattman/tibasic.

Installation

Unix (GNU/Linux, MacOS, FreeBSD, etc.)

If you are using Arch, you can just install my AUR Package with your prefered aur helper (yay, pacaur, yaourt, etc.):

yay -S tibasicc-git

For other systems, here is my also fairly easy general approach. I have only tested this on GNU/Linux, but it should work on any other unix-like OS like MacOS:

git clone https://github.com/noahvogt/tibasicc.git
cd tibasicc
sudo make clean install

Windows

If you are a Windows User, you have to install git (don't forget to add it to your Path variable during the setup process) and MinGW first. Now open cmd.exe with administrator privileges and enter these commands:

git clone https://github.com/noahvogt/tibasicc.git
cd tibasicc
win-installer.bat

Now you have to add the directories specified in the output of the install-script to your Path variable. To do this, press the 'Windows Key' and search for "path". In the window that popped up, click "Environment Variables...". In this window you have to select a path variable (you can choose on your own between the system-wide variable and the user-wide variable), click "Edit..." and add them. Now you can open a new terminal window and it should work.

Usage

After installing, this program should be in your path. This means, you can call it from the terminal like this:

tibasicc [options] filename

I haven't made a man page for this simple program yet, but you can get some usage information when you run this program without any arguments or with some help flags (-h or --help).

Features

Base Features
- compiling from source to .8xp
- decompiling from .8xp to source (-d flag)

Preprocessor
- support for comments (using #)
- remove empty lines
- remove lines that only contain whitespaces
- strip off unneeded whitespaces to make the binary smaller

Additional Options
- verbose / debug mode that gives a lot of information (-v flag)
- specify output file (-o flag)

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.