Chism 3.0 Program Manager
@1996 Michael Harmon
Valjean943@aol.com

	Chism is an application launcher for the Ti92.  It is useful so you 
wont have to type setfold(xxx) everytime you wish to execute a program.  That's
all the explanation this program really needs.  when you send the group file 
to the calculator make sure you select "Retain Folder".

For programmers:
If you want your program to work under chism, dont use the Stop command.  Use
the Return command instead (or if it's the last line of the program leave it
blank).  Here is a sample installer program that will add your program to the 
chism directory.

:install()
:Prgm
:Local a,b
:Try
:getfold()->a
:setfold(chism)
:Else
:Text "Can't Locate Chism"
:Stop
:EndTry
:Try
:Unlock progs,folders,names
:dim(names)->b
:"xxxx"->names[b+1]
:"xxxx"->progs[b+1]
:"xxxx"->folders[b+1]
:else
:{"xxxx"}->names
:{"xxxx"}->progs
:{"xxxx"}->folders
:EndTry
:Lock progs,folders,names
:setFold(#a)
:EndPrgm

This program can be modified to fit you needs as long as the basic commands
still remain.  "xxxx" by the names variable should be filled in with what you
want the menu to call the program.  "xxxx" by the progs variable should be
filled in with the program name, And the "xxxx" by the folders variable with
the folder that the program will run from.  Very easy.

