ticalc.org
Basics Archives Community Services Programming
Hardware Help About Search Your Account
   Home :: Archives :: File Archives :: TI-89 Assembly Routines
File Archives

TI-89 ASSEMBLY ROUTINES

Archive Statistics
Number of files 34
Last updated Sunday, 15 July 2012
Total downloads 114,947
Most popular file  Input String Routine with 7,863 downloads.

Click a filename to download that file.Click a folder name to view files in that folder.Click  for file information.

Icon legend: File with screen shots File with animated screen shots File with reviews Featured programs


NameSizeDateRatingDescription
(Parent Dir)folder Up to TI-89 Assembly Source
apd180.zip24k07-07-26File is not ratedapd180
Set the automatic power down (apd) time to 180 seconds (3 minutes). Can increase the life of batteries.
bignum.asm1k99-03-03File is not ratedBig Number Arithmetic Library v0.0 Beta
cliptri.zip3k02-10-15File is not ratedFast Clipped Triangle Routine
The title is pretty much self explanatory, but basically this routine has been optimized for size and speed. The code takes just under 1.2k on your calculator. Especially useful for programmers interested in creating a hidden surface 3D engine.
createfolder.asm1k00-02-19File is not ratedCreate Folder
How create a folder in assembly.
createwritefile.asm1k00-02-19File is not ratedCreate and Write file
Create and write in files in assembly
drawline.zip3k06-09-08File is not ratedFastest line-drawing routine
This is the fastest line-drawing routine for the TI-68k calculators, AFAIK. It uses the Bresenham line algorithm, and it can draw lines at an average speed of about 225,000 pixels/sec. It can draw Black, White, and XOR lines. Thanks to Samuel Stearley for some speed optimizations.
dynamic.zip7k10-12-12File is not ratedTIGCC Dynamic Array
This program enables you to dynamically allocate an array. This is useful when you don't know ahead of time how long the array should be. Code is thoroughly commented.
extract.zip6k12-07-15File is not ratedExtract TIOS List Elements
Given a list and the integer length of that list as a TIOS argument, this function will read the individual elements of that list and will re-push them to the stack as integers.
findpxlroutine.zip1k03-10-30File is not ratedFind Pixel routine
Couldn't be easier to use. This program takes the TI-BASIC coordinates of x and y, plugged into d5 and d6, and returns the byte and the pixel offset in a0 and d5! All you have to do to turn that pixel on the screen is bchg.b d5,(a0). Nifty, easy, fast!
fracpull.zip4k12-07-09File is not ratedFraction Extraction from Expression Stack
Code to extract fractions from expression stack, and how to perform common manipulations (e.g. removing integer part, reducing the fractional part, pushing the resulting (simplified) version to the stack).
hrzntl89.zip1k02-09-27File is not ratedClipped Horizontal Line Routine
This routine draws a clipped horizontal line very fast (about 8 times faster than most horizontal line routines you'll find). Especially useful for routines such as polygon fillers.
i2cdriver.zip3k00-06-26File is not ratedI2C Driver
I2C Driver for the link port of the ti-89 & 92+ calcs
i2croutines.zip3k03-03-09File is not ratedI2C routines 2.0 FINAL
This is the final version of my I2C routines. Bugs have been eliminated from the temp. sensor version. The I2C routines here are complete....but the memory expander code is not.
i2c.zip4k00-07-02File is not ratedI2C Temp. Sensor/General Routines
I2C Temp. sensor/general routines for accessing any I2C device with some changes
inputstr.asm2k98-11-21File is not ratedInput String Routine
line89.zip1k02-09-27File is not ratedClipped Line 89
This is a routine that will draw a clipped line on your calculator screen fast. A must have for many assembly programs!
longceil.zip2k12-07-08File is not ratedCeiling Function for Long Long Data Types
This source code provides a method to take the ceiling value of a fraction (p/q) where p and/or q are of long long data type. Provides a solution for the '__floatdibf' error in TIGCC, where long long cannot be converted into float (Version 0.96b8).
md4sum.zip3k02-02-16File is not ratedMD4Sum
Does the process described by RFC 1320
menu.zip3k01-01-29File is not ratedMenu Routine
An extremely basic menu routine for an opening to a C based game. Perfect for beginers to look at, easy to understand and shows how some of the most basic commands (including sprites) are applied and used.
modpower.zip5k12-07-08File is not ratedModulus of Large Integers
Testing code for performing modulus operations on very large integers (VLI).
mpixel.asm1k99-06-30File is not ratedMpixel
Findpixel routine.
ngetdelay.zip3k01-08-10File is not ratedngetdelay
v1.2:Fixed it to work now(oops).ITs the first of my average joe C routines.This allows you to use the power of _rowread with out knowing exactly what to do.
no_val.zip3k12-07-08File is not ratedNo Return Value (Error Reporting)
This code shows how to allow a program to return no value, even when [#define RETURN_VALUE] is defined. This method of returning errors is similar to, for example, typing "ln()" on the TI-OS. An error message pops up, but nothing is returned to the home screen. This routine allows for clean error reporting to the user.
onkey.zip3k00-10-28File is not ratedOnKeyExpress TSR by Dave Watson
OnKeyExpress TSR by Dave Watson: Press ON instead of 2nd-ON to turn off calc.
polygons.zip21k07-01-27File is not ratedPolygons
This is a demo program for the drawing of wireframe polygons and 3D models. It will draw, scale, and rotate polygons and models with arbitrary numbers of vertices. Works on 89, 92+, and V200.
putsprite.asm1k00-02-19File is not ratedPutSprite
How to draw a sprite with Doorsos
rle.asm3k01-02-04File is not ratedRLE
This is a tutorial/code for the use of rle decompression.
rle_decomp.zip62k02-10-24File is not ratedRLE Decompression Routine for TIGCC (Plug n' Play Easy)
Help 4 You...To convert any pic you want for your TI, first find a picture, then resize it to your TI's screen size (160x100 for 89, 240x128 for 92+ and V200). Then use iStudio, which can be found at (guess) www.ticalc.org/pub/win/ to convert the pics to RLE compressed files, with 4 level greyscale. Then use a text editor, preferably one w/ a 'Replace All' funcion, to change all the 'dc.b' or '.db' to commas and all the '$' to '0x'. Then copy, paste, and adjust the code into the '.h' examples I've given. Make sure the unneeded parts are commented out, so that the version will be made for your TI only, It can't compile more than one version at a time with the code i put together (modified from the TI-Chess source). Then compile the project with TIGCC. If you want to make movie clips, a tutorial form example will be made soon :) Will White, will_white25@hotmail.com
scroll.asm2k99-08-10File is not ratedFast Scrolling Routine
Routines for scrolling the visible portion of video memory
sdynamic.zip5k10-12-12File is not ratedTIGCC Dynamic String (2D) Array
This program enables you to dynamically allocate a two-dimensional array, essentially a matrix. This is useful when you need to dynamically create an array that uses strings.
sqrtroutine.zip1k03-10-30File is not ratedFast Square root routine
This program just iterates the formula for number N, and root M, with M set to N/2, M=.5(M+N/M) which converges rather quickly on the sqare root. Useful for raycasting, or anything involving the distance formula.
stopint.asm1k00-02-19File is not ratedStop Interrupt
How to stop interupt.
template.zip1k00-04-26File is not ratedTemplate!
Just a simple template for creating asm files, its what i use and contains all the basics. test for keys pressed, has a program speed thing already in it. makes work a bit quicker. thought it might help some newbies :-D most of source is commented...
tse.zip34k01-02-08File is not ratedTIGCC Sprite Extensions v0.50 (Preview)
If you are a C programmer and you are not pleased with the speed and the comfort of the TIGCCLIB sprite routines then have a look on the preview version of the TSE (TIGCC Sprites Extensions).

  Copyright © 1996-2012, the ticalc.org project. All rights reserved. | Contact Us | Disclaimer