[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Launching files from CFFA
- Subject: Re: Launching files from CFFA
- From: aiiadict@gmail.com
- Date: 24 Feb 2007 08:37:42 -0800
- Complaints-to: groups-abuse@google.com
- In-reply-to: <qAPDh.10678$e8.1773@bignews1.bellsouth.net>
- Injection-info: j27g2000cwj.googlegroups.com; posting-host=71.143.8.157; posting-account=wL7QqAwAAADveYas09gsbDvmMNiULH_b
- Newsgroups: comp.sys.apple2
- Organization: http://groups.google.com
- References: <qAPDh.10678$e8.1773@bignews1.bellsouth.net>
- User-agent: G2/1.0
- Xref: g2news2.google.com comp.sys.apple2:17796
type in this program and save it as STARTUP in the root directory:
modify the program to reflect the apps you want, and where they're at
on your drive.
the B (issues a prodos BYE command) is handy.. it has a folder
navigator and lets you run SYSTEM files..
Rich
0 HOME
5 PRINT CHR$ (4);"-DISCONNECT.RAM"
11 PRINT "Main Menu"
15 PRINT
20 PRINT "**HARD DRIVE**"
30 VTAB 5
40 PRINT "1) MERLIN"
50 PRINT
60 PRINT "2) COPY II +"
70 PRINT
80 PRINT "W)OZ":
90 PRINT
100 PRINT "3) BITMAP SHAPE CAPTURE"
170 VTAB 14: PRINT "P)AINT (816PAINT)"
180 VTAB 16: PRINT "B) PRODOS BYE!"
190 VTAB 18: PRINT "6) BOOT DISK DRIVE"
200 VTAB 20: PRINT "0) BASIC PROMPT"
202 VTAB 22: PRINT "/RAM IS DISCONNECTED";
500 VTAB 21: GET A$
600 IF A$ = "1" THEN PRINT CHR$ (4);"- ASM/MERLIN.SYSTEM"
610 IF A$ = "2" THEN PRINT CHR$ (4);"-UTIL.SYSTEM"
611 IF A$ = "W" THEN PRINT CHR$ (4);"PREFIX WOZ": PRINT CHR$
(4);"-STARTUP"
620 IF A$ = "0" THEN HOME : PRINT "WELCOME TO BASIC": END
630 IF A$ = "6" THEN PR# 6
640 IF A$ = "B" THEN PRINT CHR$ (4);"BYE"
650 IF A$ = "P" THEN PRINT CHR$ (4);"- PAINT/PRODOS"
660 IF A$ = "3" THEN PRINT CHR$ (4);"PREFIX /J/BSE": PRINT CHR$
(4);"RUN MENU"
700 GOTO 500