Just What Is...
Assembly: It's just that, a program written in Motorola 68000 assembly language for the TI-92, or Z80 assembly for some other calculators. Executable with the Fargo Program.
Fargo: The program for the TI-92 that enables execution of machine language programs on the TI-92. For other calculators, it is synonymous with the ZShell program. Originally called the MShell.
ZShell: The program for the TI-85 that enables execution of machine language. Programs written for the ZShell normally have a "Z" as the first character in their names. The TI-83 calculator has machine language program capability built in, and it may be accessed by executing the command Send(9prgm<name of program>).
Flat-File Database: In database speak, this is a database that has only ONE table that contains data. A relational database has many tables.
Boolean Flag: A boolean flag is a variable that has one of two values: true or false. In C, true is represented by non-zero and false is represented by zero. In BASIC or Visual Basic, true is represented by -1 and false is represented by zero.