home *** CD-ROM | disk | FTP | other *** search
- \ INSTALL.SEQ Installation file for FF by Tom Zimmer
-
- : setview ( | name --- ) \ set the path for all views
- >in @ span @ 1- > \ if nothing following command
- if viewpath clr-hcb
- viewpath prepend.path drop
- cr ." The current PATH where FF searches for system sources when viewing is"
- cr cr tab >rev viewpath count type >norm cr
- cr ." Type in the New VIEW PATH (where the system sources are located),"
- cr ." or press <enter> alone to leave the VIEW PATH the same. VIEW PATH? "
- query
- then
- >in @ span @ 1- > 0=
- if viewpath clr-hcb
- bl word viewpath over c@ 1+ cmove
- then cr cr tab
- ." VIEW PATH set to " >rev viewpath count type >norm ;
-
- : install ( --- )
- dark
- cr tab tab tab >rev ." FF Installation Program " >norm
- tab ." by Tom Zimmer"
- cr >attrib1 79 qspaces >norm
- span @ >in !
- setview
- span @ >in !
- dosver 3 <
- if cr >attrib1 79 qspaces >norm
- beep
- cr ." You are running DOS 2.x, FF needs to create the file OVERLAY.BIN."
- cr ." This will make the editor available to you."
- cr
- ." If you typed INSTALL from DOS, enter FF.EXE here."
- beep cr make-overlay
- cr tab ." Created " >rev ." OVERLAY.BIN" >norm
- then cr >attrib1 79 qspaces >norm cr
- ." FF will now create the executable program file on disk." cr
- ." Enter the name of the EXE file to make, like FF.EXE or F.EXE."
- installed on
- ovon ovoff
- fsave cr cr tab
- ." Created " >rev exehcb count type >norm
- bye ;
-
- : uninstall ( --- )
- ovon ovoff
- installed off \ turn off installed flag.
- viewpath clr-hcb \ look in current directory for views.
- cr
- ." System Un-installed, use FSAVE to create FF.EXE." cr ;
-
-