Home » Archimedes archive » Acorn User » AU 1995-04.adf » !StarInfo_StarInfo » Pearson/!3DRamFree/!RunImage

Pearson/!3DRamFree/!RunImage

This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.

Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.

Tape/disk: Home » Archimedes archive » Acorn User » AU 1995-04.adf » !StarInfo_StarInfo
Filename: Pearson/!3DRamFree/!RunImage
Read OK:
File size: 231E bytes
Load address: 0000
Exec address: 0000
File contents
   10REM "<3DRamFree$Dir>.!RunImage"
   20REM Nick Pearson, version 1.60, 21-1-95.
   30ON ERROR PROCerror:END
   40PROCtitle
   50PROCinitialise
   60PROCcreatedirs
   70PROCcopyromapps
   80PROCmoveoldboot
   90PROCexamineoldboot
  100PROCcreatenewboot
  110PROCjoinboots
  120PROCcopyapps3dmods
  130PROCend
  140END
  150
  160DEFPROCerror
  170OSCLI "Close"
  180IF ERR = 17 PROCend
  190PRINT "Line = ";ERL
  200PRINT "Error = ";ERR
  210ENDPROC
  220
  230DEFPROCtitle
  240PRINT "Installation of disc based template files for the"
  250PRINT "Rom applications, this will release 84k of RAM."
  260
  270ENDPROC
  280
  290DEFPROCinitialise
  300DIM block% 255
  310bootline$=""
  320borderutil%=FALSE
  330desktop%=&FEA
  340boot%=255
  350boottype%=FALSE
  360newline%=10
  370OSCLI "Set Res$Dir Resources:$.Resources"
  380syslocation$=FNgetsystemvariable("System$Dir")
  390bootlocation$=LEFT$(syslocation$,INSTR(syslocation$,"$",1))+"."
  400bootfullname$=bootlocation$+"!Boot"
  410bootpath$=bootlocation$+CHR$(0)
  420PROCbootid
  430ENDPROC
  440
  450DEFPROCbootid
  460PRINT '"Checking for the existance of a !Boot file."
  470SYS "OS_File",21,"!Boot",,,bootpath$ TO type%,,,,,,filetype%
  480CASE type% OF
  490 WHEN 0 :boot%=FALSE:PRINT "No !Boot file found."
  500 WHEN 1 :boot%=TRUE:PRINT "!Boot file found at ";bootfullname$
  510 WHEN 2 :boot%=2:PRINT "Application !Boot file found"
  520ENDCASE
  530PRINT '"Examining boot options set by *Opt 4,n"
  540SYS "OS_FSControl",47,syslocation$ TO ,,option%
  550CASE option% OF
  560 WHEN 0 :PRINT "*Opt 4 set to 0 (no boot action).":PROCsetopt
  570 WHEN 1 :PRINT "*Opt 4 set to 1 (*Load boot file).":REM why?
  580        :IF boot%=FALSE THEN PROCsetopt
  590 WHEN 2 :PRINT "*Opt 4 set to 2 (*Run boot file)."
  600        :IF boot%=FALSE THEN PROCsetopt
  610 WHEN 3 :PRINT "*Opt 4 set to 3 (*Exec boot file)."
  620ENDCASE
  630CASE filetype% OF
  640 WHEN -1    :
  650 WHEN &1000 :boot%=1:REM directory
  660 WHEN &2000 :boot%=2:PROCapplication:PROCend:REM application
  670 WHEN &FEA  :boottype%=TRUE:REM desktop
  680 WHEN &FEB  :boottype%=TRUE:REM obey
  690 WHEN &FFE  :boottype%=TRUE:REM command
  700 OTHERWISE  :PROCunknownfiletype:PROCend
  710ENDCASE
  720ENDPROC
  730
  740DEFPROCunknownfiletype
  750PRINT '"Your !Boot file is an unexpected file type and might"
  760PRINT "be an important program so I will not attempt to"
  770PRINT "alter it. See the help file for further information."
  780ENDPROC
  790
  800DEFPROCapplication
  810PRINT '"Your !Boot file is an application directory,which"
  820PRINT "is normally found on the new RiscPC. If this is a"
  830PRINT "RiscPC then you do not need the benefits this"
  840PRINT "program offers as they are already implemented as"
  850PRINT "standard."
  860PRINT '"If this isn't a RiscPC then you must have altered"
  870PRINT "your !Boot file implementation to look like one,"
  880PRINT "which means you probably know what you're doing"
  890PRINT "and will be able to modify this program to suit"
  900PRINT "your needs. If not, then revert back to a standard"
  910PRINT "!Boot set up, run this program, and then set up your"
  920PRINT "file as is was. Thank you for your co-operation."
  930ENDPROC
  940
  950DEFPROCsetopt
  960PRINT '"Issuing *Opt 4,3 to enable automatic boot up."
  970SYS "OS_FSControl",48,syslocation$,3
  980ENDPROC
  990
 1000DEFFNgetsystemvariable(sysvar$)
 1010!block%=0
 1020SYS "XOS_ReadVarVal",sysvar$,block%,-1,0,3 TO ,,length%
 1030SYS "OS_ReadVarVal",sysvar$,block%,255,0,3
 1040varval$=""
 1050FOR loop% = length% TO -2
 1060varval$+=CHR$?block%
 1070block%+=1
 1080NEXT
 1090=varval$
 1100
 1110DEFPROCcreatedirs
 1120PRINT '"About to create Templates directory"
 1130PRINT "in " syslocation$'
 1140PRINT "Press the Space Bar to continue or Esc to quit";
 1150REPEAT UNTIL GET=32
 1160PRINT ''"Creating Templates directory...."
 1170OSCLI "CDIR <System$Dir>.Templates"
 1180OSCLI "CDIR <System$Dir>.Templates.ADFSFiler"
 1190OSCLI "CDIR <System$Dir>.Templates.Alarm"
 1200OSCLI "CDIR <System$Dir>.Templates.AppDraw"
 1210OSCLI "CDIR <System$Dir>.Templates.Calc"
 1220OSCLI "CDIR <System$Dir>.Templates.Configure"
 1230REM OSCLI "CDIR <System$Dir>.Templates.Draw"
 1240OSCLI "CDIR <System$Dir>.Templates.Edit"
 1250OSCLI "CDIR <System$Dir>.Templates.Filer"
 1260OSCLI "CDIR <System$Dir>.Templates.FilerAct"
 1270OSCLI "CDIR <System$Dir>.Templates.Free"
 1280OSCLI "CDIR <System$Dir>.Templates.Help"
 1290OSCLI "CDIR <System$Dir>.Templates.NetFiler"
 1300OSCLI "CDIR <System$Dir>.Templates.Paint"
 1310OSCLI "CDIR <System$Dir>.Templates.Palette"
 1320OSCLI "CDIR <System$Dir>.Templates.PinBoard"
 1330OSCLI "CDIR <System$Dir>.Templates.Printers"
 1340OSCLI "CDIR <System$Dir>.Templates.Switcher"
 1350OSCLI "CDIR <System$Dir>.Templates.Wimp"
 1360ENDPROC
 1370
 1380DEFPROCcopyromapps
 1390PRINT'"Copying template files from RomApps3D..."
 1400OSCLI "Copy <Res$Dir>.ADFSFiler.Templates <System$Dir>.Templates.ADFSFiler.Templates ~C ~V"
 1410OSCLI "Copy <Res$Dir>.Alarm.Templates <System$Dir>.Templates.Alarm.Templates ~C ~V"
 1420OSCLI "Copy <Res$Dir>.AppDraw.Templates <System$Dir>.Templates.AppDraw.Templates ~C ~V"
 1430OSCLI "Copy <Res$Dir>.AppDraw.Sprites <System$Dir>.Templates.AppDraw.Sprites ~C ~V"
 1440OSCLI "Copy <Res$Dir>.Calc.Templates <System$Dir>.Templates.Calc.Templates ~C ~V"
 1450OSCLI "Copy <Res$Dir>.Calc.!RunImage <System$Dir>.Templates.Calc.!RunImage ~C ~V"
 1460OSCLI "Copy <Res$Dir>.Configure.Templates <System$Dir>.Templates.Configure.Templates ~C ~V"
 1470OSCLI "Copy <Res$Dir>.Edit.Templates <System$Dir>.Templates.Edit.Templates ~C ~V"
 1480OSCLI "Copy <Res$Dir>.Filer.Templates <System$Dir>.Templates.Filer.Templates ~C ~V"
 1490OSCLI "Copy <Res$Dir>.FilerAct.Templates <System$Dir>.Templates.FilerAct.Templates ~C ~V"
 1500OSCLI "Copy <Res$Dir>.Free.Templates <System$Dir>.Templates.Free.Templates ~C ~V"
 1510OSCLI "Copy <Res$Dir>.Help.Templates <System$Dir>.Templates.Help.Templates ~C ~V"
 1520OSCLI "Copy <Res$Dir>.NetFiler.Templates <System$Dir>.Templates.NetFiler.Templates ~C ~V"
 1530OSCLI "Copy <Res$Dir>.Paint.Templates <System$Dir>.Templates.Paint.Templates ~C ~V"
 1540OSCLI "Copy <Res$Dir>.Paint.Sprites <System$Dir>.Templates.Paint.Sprites ~C ~V"
 1550OSCLI "Copy <Res$Dir>.Palette.Templates <System$Dir>.Templates.Palette.Templates ~C ~V"
 1560OSCLI "Copy <Res$Dir>.Pinboard.Templates <System$Dir>.Templates.Pinboard.Templates ~C ~V"
 1570OSCLI "Copy <Res$Dir>.Printers.Templates <System$Dir>.Templates.Printers.Templates ~C ~V"
 1580OSCLI "Copy <Res$Dir>.Switcher.Templates <System$Dir>.Templates.Switcher.Templates ~C ~V"
 1590OSCLI "Copy <Res$Dir>.Wimp.Templates <System$Dir>.Templates.Wimp.Templates ~C ~V"
 1600ENDPROC
 1610
 1620DEFPROCmoveoldboot
 1630IF boot%=FALSE THEN ENDPROC
 1640PRINT '"Copying existing "+bootfullname$+" file to "
 1650PRINT syslocation$+".Templates.Old!Boot"
 1660PRINT "for safe keeping."
 1670OSCLI "Copy "+bootfullname$+" <System$Dir>.Templates.Old!Boot F D ~C ~V"
 1680ENDPROC
 1690
 1700DEFPROCexamineoldboot
 1710IF boot%=FALSE THEN ENDPROC
 1720borderutil%=FALSE
 1730PRINT '"Examining your old !Boot file."
 1740readboot%=OPENIN("<System$Dir>.Templates.Old!Boot")
 1750REPEAT
 1760 bootline$=""
 1770  REPEAT
 1780   char%=BGET#(readboot%)
 1790   IF char% <> 10 THEN bootline$+=CHR$char%
 1800  UNTIL char%=10 OR PTR#readboot%=EXT#readboot%
 1810 IF RIGHT$(bootline$,10)="BorderUtil" THEN
 1820  PRINT 'bootline$+" found, all is well."
 1830  borderutil%=TRUE
 1840 ENDIF
 1850UNTIL PTR#readboot%=EXT#readboot%
 1860CLOSE#readboot%
 1870IF borderutil%=FALSE THEN
 1880 PRINT '"BorderUtils module not found."
 1890ENDIF
 1900ENDPROC
 1910
 1920DEFPROCcreatenewboot
 1930REM Make sure the configured boot action runs a boot file
 1940OSCLI "Configure Boot"
 1950PRINT '"Creating new !Boot at "+bootfullname$
 1960writeboot%=OPENOUT(bootfullname$)
 1970BPUT#writeboot%,"| **  Location of !System  **"
 1980BPUT#writeboot%,"Set System$Dir "+syslocation$
 1990BPUT#writeboot%,"| **  Start of RomApps3D paths.  **"
 2000BPUT#writeboot%,"Set Filer$Path <System$Dir>.Templates.Filer.,<Filer$Path>"
 2010BPUT#writeboot%,"Set FilerAct$Path <System$Dir>.Templates.FilerAct.,<FilerAct$Path>"
 2020BPUT#writeboot%,"Set Palette$Path <System$Dir>.Templates.Palette.,<Palette$Path>"
 2030BPUT#writeboot%,"Set Switcher$Path <System$Dir>.Templates.Switcher.,<Switcher$Path>"
 2040BPUT#writeboot%,"Set ADFSFiler$Path <System$Dir>.Templates.ADFSFiler.,<ADFSFiler$Path>"
 2050BPUT#writeboot%,"Set Free$Path <System$Dir>.Templates.Free.,<Free$Path>"
 2060BPUT#writeboot%,"Set Pinboard$Path <System$Dir>.Templates.Pinboard.,<Pinboard$Path>"
 2070BPUT#writeboot%,"|  **  End of RomApps3D paths.  **"
 2080BPUT#writeboot%,"RMensure Apps3Dmods 1.60 RMload <System$Dir>.Modules.Apps3Dmods"
 2090IF borderutil%=FALSE THEN
 2100 BPUT#writeboot%,"RMensure BorderUtils 0.02 RMload <System$Dir>.Modules.BorderUtil"
 2110 PRINT '"Adding RMensure BorderUtils to !Boot file."
 2120ENDIF
 2130IF boot%=FALSE THEN BPUT#writeboot%,"DeskTop"
 2140CLOSE#writeboot%
 2150IF boot%=TRUE AND boottype%=TRUE THEN SYS "OS_File",18,bootfullname$,filetype%
 2160IF boot%=FALSE THEN SYS "OS_File",18,bootfullname$,desktop%
 2170ENDPROC
 2180
 2190DEFPROCjoinboots
 2200IF boot%=FALSE THEN ENDPROC
 2210PRINT '"Adding your old !Boot to the new !Boot"
 2220readboot%=OPENIN("<System$Dir>.Templates.Old!Boot")
 2230writeboot%=OPENUP(bootfullname$)
 2240PTR#writeboot%=EXT#writeboot%
 2250REPEAT
 2260 bootline$=""
 2270  REPEAT
 2280   char%=BGET#(readboot%)
 2290   IF char% <> 10 THEN bootline$+=CHR$char%
 2300  UNTIL char%=10 OR PTR#readboot%=EXT#readboot%
 2310 IF RIGHT$(bootline$,9)="ROMApps3D" THEN
 2320  PRINT 'bootline$
 2330  PRINT "has been removed from the !Boot file."
 2340  bootline$=""
 2350 ENDIF
 2360 IF bootline$ <> "" BPUT#writeboot%,bootline$
 2370UNTIL PTR#readboot%=EXT#readboot%
 2380CLOSE#readboot%
 2390CLOSE#writeboot%
 2400ENDPROC
 2410
 2420DEFPROCcopyapps3dmods
 2430PRINT '"Copying Apps3Dmods to "
 2440PRINT syslocation$+".Modules.Apps3Dmods"
 2450OSCLI "Copy <3DRamFree$Dir>.Apps3Dmods <System$Dir>.Modules.Apps3Dmods F ~C ~V"
 2460OSCLI "RMLoad <System$Dir>.Modules.Apps3Dmods"
 2470ENDPROC
 2480
 2490DEFPROCend
 2500PRINT '"End of program. Shut down the computer and reset"
 2510PRINT "it for the changes to come into effect."
 2520PRINT '"If you are using the !NewLook application"
 2530PRINT "read the help file on how to prevent it"
 2540PRINT "from loading the ROMApps3D module."
 2550PRINT '"Press F3 to save this information."
 2560END
 2570ENDPROC

!� "<3DRamFree$Dir>.!RunImage"
*� Nick Pearson, version 1.60, 21-1-95.
� � �error:�
(
�title
2�initialise
<�createdirs
F�copyromapps
P�moveoldboot
Z�examineoldboot
d�createnewboot
n�joinboots
x�copyapps3dmods
��end
��
�
���error
�
� "Close"
�� � = 17 �end
�� "Line = ";�
�� "Error = ";�
��
�
���title
�9� "Installation of disc based template files for the"
�7� "Rom applications, this will release 84k of RAM."

�

"��initialise
,� block% 255
6bootline$=""
@borderutil%=�
Jdesktop%=&FEA
T
boot%=255
^boottype%=�
hnewline%=10
r)� "Set Res$Dir Resources:$.Resources"
|1syslocation$=�getsystemvariable("System$Dir")
�9bootlocation$=�syslocation$,�syslocation$,"$",1))+"."
�'bootfullname$=bootlocation$+"!Boot"
� bootpath$=bootlocation$+�(0)
��bootid
��
�
���bootid
�4� '"Checking for the existance of a !Boot file."
�>ș "OS_File",21,"!Boot",,,bootpath$ � type%,,,,,,filetype%
�Ȏ type% �
�* � 0 :boot%=�:� "No !Boot file found."
�8 � 1 :boot%=�:� "!Boot file found at ";bootfullname$
�2 � 2 :boot%=2:� "Application !Boot file found"
�
/� '"Examining boot options set by *Opt 4,n"
1ș "OS_FSControl",47,syslocation$ � ,,option%
&Ȏ option% �
07 � 0 :� "*Opt 4 set to 0 (no boot action).":�setopt
:7 � 1 :� "*Opt 4 set to 1 (*Load boot file).":� why?
D         :� boot%=� � �setopt
N/ � 2 :� "*Opt 4 set to 2 (*Run boot file)."
X         :� boot%=� � �setopt
b0 � 3 :� "*Opt 4 set to 3 (*Exec boot file)."
l�
vȎ filetype% �
� � -1    :
�! � &1000 :boot%=1:� directory
�5 � &2000 :boot%=2:�application:�end:� application
�# � &FEA  :boottype%=�:� desktop
�  � &FEB  :boottype%=�:� obey
�# � &FFE  :boottype%=�:� command
�   :�unknownfiletype:�end
��
��
�
���unknownfiletype
�=� '"Your !Boot file is an unexpected file type and might"
�8� "be an important program so I will not attempt to"
<� "alter it. See the help file for further information."
�

 ��application
*:� '"Your !Boot file is an application directory,which"
49� "is normally found on the new RiscPC. If this is a"
>5� "RiscPC then you do not need the benefits this"
H9� "program offers as they are already implemented as"
R� "standard."
\:� '"If this isn't a RiscPC then you must have altered"
f8� "your !Boot file implementation to look like one,"
p7� "which means you probably know what you're doing"
z7� "and will be able to modify this program to suit"
�:� "your needs. If not, then revert back to a standard"
�<� "!Boot set up, run this program, and then set up your"
�8� "file as is was. Thank you for your co-operation."
��
�
���setopt
�6� '"Issuing *Opt 4,3 to enable automatic boot up."
�'ș "OS_FSControl",48,syslocation$,3
��
�
� ݤgetsystemvariable(sysvar$)
�
!block%=0
�9ș "XOS_ReadVarVal",sysvar$,block%,-1,0,3 � ,,length%
-ș "OS_ReadVarVal",sysvar$,block%,255,0,3
varval$=""
� loop% = length% � -2
$varval$+=�?block%
.
block%+=1
8�
B=varval$
L
V��createdirs
`,� '"About to create Templates directory"
j� "in " syslocation$'
t7� "Press the Space Bar to continue or Esc to quit";
~� � �=32
�*� ''"Creating Templates directory...."
�#� "CDIR <System$Dir>.Templates"
�-� "CDIR <System$Dir>.Templates.ADFSFiler"
�)� "CDIR <System$Dir>.Templates.Alarm"
�+� "CDIR <System$Dir>.Templates.AppDraw"
�(� "CDIR <System$Dir>.Templates.Calc"
�-� "CDIR <System$Dir>.Templates.Configure"
�.� OSCLI "CDIR <System$Dir>.Templates.Draw"
�(� "CDIR <System$Dir>.Templates.Edit"
�)� "CDIR <System$Dir>.Templates.Filer"
�,� "CDIR <System$Dir>.Templates.FilerAct"
�(� "CDIR <System$Dir>.Templates.Free"
(� "CDIR <System$Dir>.Templates.Help"

,� "CDIR <System$Dir>.Templates.NetFiler"
)� "CDIR <System$Dir>.Templates.Paint"
+� "CDIR <System$Dir>.Templates.Palette"
(,� "CDIR <System$Dir>.Templates.PinBoard"
2,� "CDIR <System$Dir>.Templates.Printers"
<,� "CDIR <System$Dir>.Templates.Switcher"
F(� "CDIR <System$Dir>.Templates.Wimp"
P�
Z
d��copyromapps
n0�'"Copying template files from RomApps3D..."
x[� "Copy <Res$Dir>.ADFSFiler.Templates <System$Dir>.Templates.ADFSFiler.Templates ~C ~V"
�S� "Copy <Res$Dir>.Alarm.Templates <System$Dir>.Templates.Alarm.Templates ~C ~V"
�W� "Copy <Res$Dir>.AppDraw.Templates <System$Dir>.Templates.AppDraw.Templates ~C ~V"
�S� "Copy <Res$Dir>.AppDraw.Sprites <System$Dir>.Templates.AppDraw.Sprites ~C ~V"
�Q� "Copy <Res$Dir>.Calc.Templates <System$Dir>.Templates.Calc.Templates ~C ~V"
�Q� "Copy <Res$Dir>.Calc.!RunImage <System$Dir>.Templates.Calc.!RunImage ~C ~V"
�[� "Copy <Res$Dir>.Configure.Templates <System$Dir>.Templates.Configure.Templates ~C ~V"
�Q� "Copy <Res$Dir>.Edit.Templates <System$Dir>.Templates.Edit.Templates ~C ~V"
�S� "Copy <Res$Dir>.Filer.Templates <System$Dir>.Templates.Filer.Templates ~C ~V"
�Y� "Copy <Res$Dir>.FilerAct.Templates <System$Dir>.Templates.FilerAct.Templates ~C ~V"
�Q� "Copy <Res$Dir>.Free.Templates <System$Dir>.Templates.Free.Templates ~C ~V"
�Q� "Copy <Res$Dir>.Help.Templates <System$Dir>.Templates.Help.Templates ~C ~V"
�Y� "Copy <Res$Dir>.NetFiler.Templates <System$Dir>.Templates.NetFiler.Templates ~C ~V"
�S� "Copy <Res$Dir>.Paint.Templates <System$Dir>.Templates.Paint.Templates ~C ~V"
O� "Copy <Res$Dir>.Paint.Sprites <System$Dir>.Templates.Paint.Sprites ~C ~V"
W� "Copy <Res$Dir>.Palette.Templates <System$Dir>.Templates.Palette.Templates ~C ~V"
Y� "Copy <Res$Dir>.Pinboard.Templates <System$Dir>.Templates.Pinboard.Templates ~C ~V"
"Y� "Copy <Res$Dir>.Printers.Templates <System$Dir>.Templates.Printers.Templates ~C ~V"
,Y� "Copy <Res$Dir>.Switcher.Templates <System$Dir>.Templates.Switcher.Templates ~C ~V"
6Q� "Copy <Res$Dir>.Wimp.Templates <System$Dir>.Templates.Wimp.Templates ~C ~V"
@�
J
T��moveoldboot
^� boot%=� � �
h4� '"Copying existing "+bootfullname$+" file to "
r(� syslocation$+".Templates.Old!Boot"
|� "for safe keeping."
�H� "Copy "+bootfullname$+" <System$Dir>.Templates.Old!Boot F D ~C ~V"
��
�
���examineoldboot
�� boot%=� � �
�borderutil%=�
�'� '"Examining your old !Boot file."
�2readboot%=�("<System$Dir>.Templates.Old!Boot")
��
� bootline$=""
�  �
�   char%=�#(readboot%)
�(   � char% <> 10 � bootline$+=�char%
*  � char%=10 � �#readboot%=�#readboot%
$ � �bootline$,10)="BorderUtil" �
)  � 'bootline$+" found, all is well."
&  borderutil%=�
0 �
:� �#readboot%=�#readboot%
D�#readboot%
N� borderutil%=� �
X' � '"BorderUtils module not found."
b�
l�
v
���createnewboot
�;� Make sure the configured boot action runs a boot file
�� "Configure Boot"
�-� '"Creating new !Boot at "+bootfullname$
�writeboot%=�(bootfullname$)
�0�#writeboot%,"| **  Location of !System  **"
�/�#writeboot%,"Set System$Dir "+syslocation$
�6�#writeboot%,"| **  Start of RomApps3D paths.  **"
�L�#writeboot%,"Set Filer$Path <System$Dir>.Templates.Filer.,<Filer$Path>"
�U�#writeboot%,"Set FilerAct$Path <System$Dir>.Templates.FilerAct.,<FilerAct$Path>"
�R�#writeboot%,"Set Palette$Path <System$Dir>.Templates.Palette.,<Palette$Path>"
�U�#writeboot%,"Set Switcher$Path <System$Dir>.Templates.Switcher.,<Switcher$Path>"
�X�#writeboot%,"Set ADFSFiler$Path <System$Dir>.Templates.ADFSFiler.,<ADFSFiler$Path>"
I�#writeboot%,"Set Free$Path <System$Dir>.Templates.Free.,<Free$Path>"
U�#writeboot%,"Set Pinboard$Path <System$Dir>.Templates.Pinboard.,<Pinboard$Path>"
5�#writeboot%,"|  **  End of RomApps3D paths.  **"
 R�#writeboot%,"RMensure Apps3Dmods 1.60 RMload <System$Dir>.Modules.Apps3Dmods"
*� borderutil%=� �
4T �#writeboot%,"RMensure BorderUtils 0.02 RMload <System$Dir>.Modules.BorderUtil"
>4 � '"Adding RMensure BorderUtils to !Boot file."
H�
R&� boot%=� � �#writeboot%,"DeskTop"
\�#writeboot%
fE� boot%=� � boottype%=� � ș "OS_File",18,bootfullname$,filetype%
p6� boot%=� � ș "OS_File",18,bootfullname$,desktop%
z�
�
���joinboots
�� boot%=� � �
�/� '"Adding your old !Boot to the new !Boot"
�2readboot%=�("<System$Dir>.Templates.Old!Boot")
�writeboot%=�(bootfullname$)
��#writeboot%=�#writeboot%
��
� bootline$=""
�  �
�   char%=�#(readboot%)
�(   � char% <> 10 � bootline$+=�char%
�*  � char%=10 � �#readboot%=�#readboot%
	" � �bootline$,9)="ROMApps3D" �
	  � 'bootline$
	/  � "has been removed from the !Boot file."
	$  bootline$=""
	. �
	8- � bootline$ <> "" �#writeboot%,bootline$
	B� �#readboot%=�#readboot%
	L�#readboot%
	V�#writeboot%
	`�
	j
	t��copyapps3dmods
	~� '"Copying Apps3Dmods to "
	�(� syslocation$+".Modules.Apps3Dmods"
	�O� "Copy <3DRamFree$Dir>.Apps3Dmods <System$Dir>.Modules.Apps3Dmods F ~C ~V"
	�.� "RMLoad <System$Dir>.Modules.Apps3Dmods"
	��
	�
	�	��end
	�9� '"End of program. Shut down the computer and reset"
	�/� "it for the changes to come into effect."
	�2� '"If you are using the !NewLook application"
	�/� "read the help file on how to prevent it"
	�*� "from loading the ROMApps3D module."
	�+� '"Press F3 to save this information."
�

�
�
00000000  0d 00 0a 21 f4 20 22 3c  33 44 52 61 6d 46 72 65  |...!. "<3DRamFre|
00000010  65 24 44 69 72 3e 2e 21  52 75 6e 49 6d 61 67 65  |e$Dir>.!RunImage|
00000020  22 0d 00 14 2a f4 20 4e  69 63 6b 20 50 65 61 72  |"...*. Nick Pear|
00000030  73 6f 6e 2c 20 76 65 72  73 69 6f 6e 20 31 2e 36  |son, version 1.6|
00000040  30 2c 20 32 31 2d 31 2d  39 35 2e 0d 00 1e 10 ee  |0, 21-1-95......|
00000050  20 85 20 f2 65 72 72 6f  72 3a e0 0d 00 28 0a f2  | . .error:...(..|
00000060  74 69 74 6c 65 0d 00 32  0f f2 69 6e 69 74 69 61  |title..2..initia|
00000070  6c 69 73 65 0d 00 3c 0f  f2 63 72 65 61 74 65 64  |lise..<..created|
00000080  69 72 73 0d 00 46 10 f2  63 6f 70 79 72 6f 6d 61  |irs..F..copyroma|
00000090  70 70 73 0d 00 50 10 f2  6d 6f 76 65 6f 6c 64 62  |pps..P..moveoldb|
000000a0  6f 6f 74 0d 00 5a 13 f2  65 78 61 6d 69 6e 65 6f  |oot..Z..examineo|
000000b0  6c 64 62 6f 6f 74 0d 00  64 12 f2 63 72 65 61 74  |ldboot..d..creat|
000000c0  65 6e 65 77 62 6f 6f 74  0d 00 6e 0e f2 6a 6f 69  |enewboot..n..joi|
000000d0  6e 62 6f 6f 74 73 0d 00  78 13 f2 63 6f 70 79 61  |nboots..x..copya|
000000e0  70 70 73 33 64 6d 6f 64  73 0d 00 82 08 f2 65 6e  |pps3dmods.....en|
000000f0  64 0d 00 8c 05 e0 0d 00  96 04 0d 00 a0 0b dd f2  |d...............|
00000100  65 72 72 6f 72 0d 00 aa  0d ff 20 22 43 6c 6f 73  |error..... "Clos|
00000110  65 22 0d 00 b4 11 e7 20  9f 20 3d 20 31 37 20 f2  |e"..... . = 17 .|
00000120  65 6e 64 0d 00 be 11 f1  20 22 4c 69 6e 65 20 3d  |end..... "Line =|
00000130  20 22 3b 9e 0d 00 c8 12  f1 20 22 45 72 72 6f 72  | ";...... "Error|
00000140  20 3d 20 22 3b 9f 0d 00  d2 05 e1 0d 00 dc 04 0d  | = ";...........|
00000150  00 e6 0b dd f2 74 69 74  6c 65 0d 00 f0 39 f1 20  |.....title...9. |
00000160  22 49 6e 73 74 61 6c 6c  61 74 69 6f 6e 20 6f 66  |"Installation of|
00000170  20 64 69 73 63 20 62 61  73 65 64 20 74 65 6d 70  | disc based temp|
00000180  6c 61 74 65 20 66 69 6c  65 73 20 66 6f 72 20 74  |late files for t|
00000190  68 65 22 0d 00 fa 37 f1  20 22 52 6f 6d 20 61 70  |he"...7. "Rom ap|
000001a0  70 6c 69 63 61 74 69 6f  6e 73 2c 20 74 68 69 73  |plications, this|
000001b0  20 77 69 6c 6c 20 72 65  6c 65 61 73 65 20 38 34  | will release 84|
000001c0  6b 20 6f 66 20 52 41 4d  2e 22 0d 01 04 04 0d 01  |k of RAM."......|
000001d0  0e 05 e1 0d 01 18 04 0d  01 22 10 dd f2 69 6e 69  |........."...ini|
000001e0  74 69 61 6c 69 73 65 0d  01 2c 10 de 20 62 6c 6f  |tialise..,.. blo|
000001f0  63 6b 25 20 32 35 35 0d  01 36 10 62 6f 6f 74 6c  |ck% 255..6.bootl|
00000200  69 6e 65 24 3d 22 22 0d  01 40 11 62 6f 72 64 65  |ine$=""..@.borde|
00000210  72 75 74 69 6c 25 3d a3  0d 01 4a 11 64 65 73 6b  |rutil%=...J.desk|
00000220  74 6f 70 25 3d 26 46 45  41 0d 01 54 0d 62 6f 6f  |top%=&FEA..T.boo|
00000230  74 25 3d 32 35 35 0d 01  5e 0f 62 6f 6f 74 74 79  |t%=255..^.bootty|
00000240  70 65 25 3d a3 0d 01 68  0f 6e 65 77 6c 69 6e 65  |pe%=...h.newline|
00000250  25 3d 31 30 0d 01 72 29  ff 20 22 53 65 74 20 52  |%=10..r). "Set R|
00000260  65 73 24 44 69 72 20 52  65 73 6f 75 72 63 65 73  |es$Dir Resources|
00000270  3a 24 2e 52 65 73 6f 75  72 63 65 73 22 0d 01 7c  |:$.Resources"..||
00000280  31 73 79 73 6c 6f 63 61  74 69 6f 6e 24 3d a4 67  |1syslocation$=.g|
00000290  65 74 73 79 73 74 65 6d  76 61 72 69 61 62 6c 65  |etsystemvariable|
000002a0  28 22 53 79 73 74 65 6d  24 44 69 72 22 29 0d 01  |("System$Dir")..|
000002b0  86 39 62 6f 6f 74 6c 6f  63 61 74 69 6f 6e 24 3d  |.9bootlocation$=|
000002c0  c0 73 79 73 6c 6f 63 61  74 69 6f 6e 24 2c a7 73  |.syslocation$,.s|
000002d0  79 73 6c 6f 63 61 74 69  6f 6e 24 2c 22 24 22 2c  |yslocation$,"$",|
000002e0  31 29 29 2b 22 2e 22 0d  01 90 27 62 6f 6f 74 66  |1))+"."...'bootf|
000002f0  75 6c 6c 6e 61 6d 65 24  3d 62 6f 6f 74 6c 6f 63  |ullname$=bootloc|
00000300  61 74 69 6f 6e 24 2b 22  21 42 6f 6f 74 22 0d 01  |ation$+"!Boot"..|
00000310  9a 20 62 6f 6f 74 70 61  74 68 24 3d 62 6f 6f 74  |. bootpath$=boot|
00000320  6c 6f 63 61 74 69 6f 6e  24 2b bd 28 30 29 0d 01  |location$+.(0)..|
00000330  a4 0b f2 62 6f 6f 74 69  64 0d 01 ae 05 e1 0d 01  |...bootid.......|
00000340  b8 04 0d 01 c2 0c dd f2  62 6f 6f 74 69 64 0d 01  |........bootid..|
00000350  cc 34 f1 20 27 22 43 68  65 63 6b 69 6e 67 20 66  |.4. '"Checking f|
00000360  6f 72 20 74 68 65 20 65  78 69 73 74 61 6e 63 65  |or the existance|
00000370  20 6f 66 20 61 20 21 42  6f 6f 74 20 66 69 6c 65  | of a !Boot file|
00000380  2e 22 0d 01 d6 3e c8 99  20 22 4f 53 5f 46 69 6c  |."...>.. "OS_Fil|
00000390  65 22 2c 32 31 2c 22 21  42 6f 6f 74 22 2c 2c 2c  |e",21,"!Boot",,,|
000003a0  62 6f 6f 74 70 61 74 68  24 20 b8 20 74 79 70 65  |bootpath$ . type|
000003b0  25 2c 2c 2c 2c 2c 2c 66  69 6c 65 74 79 70 65 25  |%,,,,,,filetype%|
000003c0  0d 01 e0 0e c8 8e 20 74  79 70 65 25 20 ca 0d 01  |...... type% ...|
000003d0  ea 2a 20 c9 20 30 20 3a  62 6f 6f 74 25 3d a3 3a  |.* . 0 :boot%=.:|
000003e0  f1 20 22 4e 6f 20 21 42  6f 6f 74 20 66 69 6c 65  |. "No !Boot file|
000003f0  20 66 6f 75 6e 64 2e 22  0d 01 f4 38 20 c9 20 31  | found."...8 . 1|
00000400  20 3a 62 6f 6f 74 25 3d  b9 3a f1 20 22 21 42 6f  | :boot%=.:. "!Bo|
00000410  6f 74 20 66 69 6c 65 20  66 6f 75 6e 64 20 61 74  |ot file found at|
00000420  20 22 3b 62 6f 6f 74 66  75 6c 6c 6e 61 6d 65 24  | ";bootfullname$|
00000430  0d 01 fe 32 20 c9 20 32  20 3a 62 6f 6f 74 25 3d  |...2 . 2 :boot%=|
00000440  32 3a f1 20 22 41 70 70  6c 69 63 61 74 69 6f 6e  |2:. "Application|
00000450  20 21 42 6f 6f 74 20 66  69 6c 65 20 66 6f 75 6e  | !Boot file foun|
00000460  64 22 0d 02 08 05 cb 0d  02 12 2f f1 20 27 22 45  |d"......../. '"E|
00000470  78 61 6d 69 6e 69 6e 67  20 62 6f 6f 74 20 6f 70  |xamining boot op|
00000480  74 69 6f 6e 73 20 73 65  74 20 62 79 20 2a 4f 70  |tions set by *Op|
00000490  74 20 34 2c 6e 22 0d 02  1c 31 c8 99 20 22 4f 53  |t 4,n"...1.. "OS|
000004a0  5f 46 53 43 6f 6e 74 72  6f 6c 22 2c 34 37 2c 73  |_FSControl",47,s|
000004b0  79 73 6c 6f 63 61 74 69  6f 6e 24 20 b8 20 2c 2c  |yslocation$ . ,,|
000004c0  6f 70 74 69 6f 6e 25 0d  02 26 10 c8 8e 20 6f 70  |option%..&... op|
000004d0  74 69 6f 6e 25 20 ca 0d  02 30 37 20 c9 20 30 20  |tion% ...07 . 0 |
000004e0  3a f1 20 22 2a 4f 70 74  20 34 20 73 65 74 20 74  |:. "*Opt 4 set t|
000004f0  6f 20 30 20 28 6e 6f 20  62 6f 6f 74 20 61 63 74  |o 0 (no boot act|
00000500  69 6f 6e 29 2e 22 3a f2  73 65 74 6f 70 74 0d 02  |ion).":.setopt..|
00000510  3a 37 20 c9 20 31 20 3a  f1 20 22 2a 4f 70 74 20  |:7 . 1 :. "*Opt |
00000520  34 20 73 65 74 20 74 6f  20 31 20 28 2a 4c 6f 61  |4 set to 1 (*Loa|
00000530  64 20 62 6f 6f 74 20 66  69 6c 65 29 2e 22 3a f4  |d boot file).":.|
00000540  20 77 68 79 3f 0d 02 44  20 20 20 20 20 20 20 20  | why?..D        |
00000550  20 3a e7 20 62 6f 6f 74  25 3d a3 20 8c 20 f2 73  | :. boot%=. . .s|
00000560  65 74 6f 70 74 0d 02 4e  2f 20 c9 20 32 20 3a f1  |etopt..N/ . 2 :.|
00000570  20 22 2a 4f 70 74 20 34  20 73 65 74 20 74 6f 20  | "*Opt 4 set to |
00000580  32 20 28 2a 52 75 6e 20  62 6f 6f 74 20 66 69 6c  |2 (*Run boot fil|
00000590  65 29 2e 22 0d 02 58 20  20 20 20 20 20 20 20 20  |e)."..X         |
000005a0  3a e7 20 62 6f 6f 74 25  3d a3 20 8c 20 f2 73 65  |:. boot%=. . .se|
000005b0  74 6f 70 74 0d 02 62 30  20 c9 20 33 20 3a f1 20  |topt..b0 . 3 :. |
000005c0  22 2a 4f 70 74 20 34 20  73 65 74 20 74 6f 20 33  |"*Opt 4 set to 3|
000005d0  20 28 2a 45 78 65 63 20  62 6f 6f 74 20 66 69 6c  | (*Exec boot fil|
000005e0  65 29 2e 22 0d 02 6c 05  cb 0d 02 76 12 c8 8e 20  |e)."..l....v... |
000005f0  66 69 6c 65 74 79 70 65  25 20 ca 0d 02 80 0e 20  |filetype% ..... |
00000600  c9 20 2d 31 20 20 20 20  3a 0d 02 8a 21 20 c9 20  |. -1    :...! . |
00000610  26 31 30 30 30 20 3a 62  6f 6f 74 25 3d 31 3a f4  |&1000 :boot%=1:.|
00000620  20 64 69 72 65 63 74 6f  72 79 0d 02 94 35 20 c9  | directory...5 .|
00000630  20 26 32 30 30 30 20 3a  62 6f 6f 74 25 3d 32 3a  | &2000 :boot%=2:|
00000640  f2 61 70 70 6c 69 63 61  74 69 6f 6e 3a f2 65 6e  |.application:.en|
00000650  64 3a f4 20 61 70 70 6c  69 63 61 74 69 6f 6e 0d  |d:. application.|
00000660  02 9e 23 20 c9 20 26 46  45 41 20 20 3a 62 6f 6f  |..# . &FEA  :boo|
00000670  74 74 79 70 65 25 3d b9  3a f4 20 64 65 73 6b 74  |ttype%=.:. deskt|
00000680  6f 70 0d 02 a8 20 20 c9  20 26 46 45 42 20 20 3a  |op...  . &FEB  :|
00000690  62 6f 6f 74 74 79 70 65  25 3d b9 3a f4 20 6f 62  |boottype%=.:. ob|
000006a0  65 79 0d 02 b2 23 20 c9  20 26 46 46 45 20 20 3a  |ey...# . &FFE  :|
000006b0  62 6f 6f 74 74 79 70 65  25 3d b9 3a f4 20 63 6f  |boottype%=.:. co|
000006c0  6d 6d 61 6e 64 0d 02 bc  1e 20 7f 20 20 3a f2 75  |mmand.... .  :.u|
000006d0  6e 6b 6e 6f 77 6e 66 69  6c 65 74 79 70 65 3a f2  |nknownfiletype:.|
000006e0  65 6e 64 0d 02 c6 05 cb  0d 02 d0 05 e1 0d 02 da  |end.............|
000006f0  04 0d 02 e4 15 dd f2 75  6e 6b 6e 6f 77 6e 66 69  |.......unknownfi|
00000700  6c 65 74 79 70 65 0d 02  ee 3d f1 20 27 22 59 6f  |letype...=. '"Yo|
00000710  75 72 20 21 42 6f 6f 74  20 66 69 6c 65 20 69 73  |ur !Boot file is|
00000720  20 61 6e 20 75 6e 65 78  70 65 63 74 65 64 20 66  | an unexpected f|
00000730  69 6c 65 20 74 79 70 65  20 61 6e 64 20 6d 69 67  |ile type and mig|
00000740  68 74 22 0d 02 f8 38 f1  20 22 62 65 20 61 6e 20  |ht"...8. "be an |
00000750  69 6d 70 6f 72 74 61 6e  74 20 70 72 6f 67 72 61  |important progra|
00000760  6d 20 73 6f 20 49 20 77  69 6c 6c 20 6e 6f 74 20  |m so I will not |
00000770  61 74 74 65 6d 70 74 20  74 6f 22 0d 03 02 3c f1  |attempt to"...<.|
00000780  20 22 61 6c 74 65 72 20  69 74 2e 20 53 65 65 20  | "alter it. See |
00000790  74 68 65 20 68 65 6c 70  20 66 69 6c 65 20 66 6f  |the help file fo|
000007a0  72 20 66 75 72 74 68 65  72 20 69 6e 66 6f 72 6d  |r further inform|
000007b0  61 74 69 6f 6e 2e 22 0d  03 0c 05 e1 0d 03 16 04  |ation.".........|
000007c0  0d 03 20 11 dd f2 61 70  70 6c 69 63 61 74 69 6f  |.. ...applicatio|
000007d0  6e 0d 03 2a 3a f1 20 27  22 59 6f 75 72 20 21 42  |n..*:. '"Your !B|
000007e0  6f 6f 74 20 66 69 6c 65  20 69 73 20 61 6e 20 61  |oot file is an a|
000007f0  70 70 6c 69 63 61 74 69  6f 6e 20 64 69 72 65 63  |pplication direc|
00000800  74 6f 72 79 2c 77 68 69  63 68 22 0d 03 34 39 f1  |tory,which"..49.|
00000810  20 22 69 73 20 6e 6f 72  6d 61 6c 6c 79 20 66 6f  | "is normally fo|
00000820  75 6e 64 20 6f 6e 20 74  68 65 20 6e 65 77 20 52  |und on the new R|
00000830  69 73 63 50 43 2e 20 49  66 20 74 68 69 73 20 69  |iscPC. If this i|
00000840  73 20 61 22 0d 03 3e 35  f1 20 22 52 69 73 63 50  |s a"..>5. "RiscP|
00000850  43 20 74 68 65 6e 20 79  6f 75 20 64 6f 20 6e 6f  |C then you do no|
00000860  74 20 6e 65 65 64 20 74  68 65 20 62 65 6e 65 66  |t need the benef|
00000870  69 74 73 20 74 68 69 73  22 0d 03 48 39 f1 20 22  |its this"..H9. "|
00000880  70 72 6f 67 72 61 6d 20  6f 66 66 65 72 73 20 61  |program offers a|
00000890  73 20 74 68 65 79 20 61  72 65 20 61 6c 72 65 61  |s they are alrea|
000008a0  64 79 20 69 6d 70 6c 65  6d 65 6e 74 65 64 20 61  |dy implemented a|
000008b0  73 22 0d 03 52 11 f1 20  22 73 74 61 6e 64 61 72  |s"..R.. "standar|
000008c0  64 2e 22 0d 03 5c 3a f1  20 27 22 49 66 20 74 68  |d."..\:. '"If th|
000008d0  69 73 20 69 73 6e 27 74  20 61 20 52 69 73 63 50  |is isn't a RiscP|
000008e0  43 20 74 68 65 6e 20 79  6f 75 20 6d 75 73 74 20  |C then you must |
000008f0  68 61 76 65 20 61 6c 74  65 72 65 64 22 0d 03 66  |have altered"..f|
00000900  38 f1 20 22 79 6f 75 72  20 21 42 6f 6f 74 20 66  |8. "your !Boot f|
00000910  69 6c 65 20 69 6d 70 6c  65 6d 65 6e 74 61 74 69  |ile implementati|
00000920  6f 6e 20 74 6f 20 6c 6f  6f 6b 20 6c 69 6b 65 20  |on to look like |
00000930  6f 6e 65 2c 22 0d 03 70  37 f1 20 22 77 68 69 63  |one,"..p7. "whic|
00000940  68 20 6d 65 61 6e 73 20  79 6f 75 20 70 72 6f 62  |h means you prob|
00000950  61 62 6c 79 20 6b 6e 6f  77 20 77 68 61 74 20 79  |ably know what y|
00000960  6f 75 27 72 65 20 64 6f  69 6e 67 22 0d 03 7a 37  |ou're doing"..z7|
00000970  f1 20 22 61 6e 64 20 77  69 6c 6c 20 62 65 20 61  |. "and will be a|
00000980  62 6c 65 20 74 6f 20 6d  6f 64 69 66 79 20 74 68  |ble to modify th|
00000990  69 73 20 70 72 6f 67 72  61 6d 20 74 6f 20 73 75  |is program to su|
000009a0  69 74 22 0d 03 84 3a f1  20 22 79 6f 75 72 20 6e  |it"...:. "your n|
000009b0  65 65 64 73 2e 20 49 66  20 6e 6f 74 2c 20 74 68  |eeds. If not, th|
000009c0  65 6e 20 72 65 76 65 72  74 20 62 61 63 6b 20 74  |en revert back t|
000009d0  6f 20 61 20 73 74 61 6e  64 61 72 64 22 0d 03 8e  |o a standard"...|
000009e0  3c f1 20 22 21 42 6f 6f  74 20 73 65 74 20 75 70  |<. "!Boot set up|
000009f0  2c 20 72 75 6e 20 74 68  69 73 20 70 72 6f 67 72  |, run this progr|
00000a00  61 6d 2c 20 61 6e 64 20  74 68 65 6e 20 73 65 74  |am, and then set|
00000a10  20 75 70 20 79 6f 75 72  22 0d 03 98 38 f1 20 22  | up your"...8. "|
00000a20  66 69 6c 65 20 61 73 20  69 73 20 77 61 73 2e 20  |file as is was. |
00000a30  54 68 61 6e 6b 20 79 6f  75 20 66 6f 72 20 79 6f  |Thank you for yo|
00000a40  75 72 20 63 6f 2d 6f 70  65 72 61 74 69 6f 6e 2e  |ur co-operation.|
00000a50  22 0d 03 a2 05 e1 0d 03  ac 04 0d 03 b6 0c dd f2  |"...............|
00000a60  73 65 74 6f 70 74 0d 03  c0 36 f1 20 27 22 49 73  |setopt...6. '"Is|
00000a70  73 75 69 6e 67 20 2a 4f  70 74 20 34 2c 33 20 74  |suing *Opt 4,3 t|
00000a80  6f 20 65 6e 61 62 6c 65  20 61 75 74 6f 6d 61 74  |o enable automat|
00000a90  69 63 20 62 6f 6f 74 20  75 70 2e 22 0d 03 ca 27  |ic boot up."...'|
00000aa0  c8 99 20 22 4f 53 5f 46  53 43 6f 6e 74 72 6f 6c  |.. "OS_FSControl|
00000ab0  22 2c 34 38 2c 73 79 73  6c 6f 63 61 74 69 6f 6e  |",48,syslocation|
00000ac0  24 2c 33 0d 03 d4 05 e1  0d 03 de 04 0d 03 e8 20  |$,3............ |
00000ad0  dd a4 67 65 74 73 79 73  74 65 6d 76 61 72 69 61  |..getsystemvaria|
00000ae0  62 6c 65 28 73 79 73 76  61 72 24 29 0d 03 f2 0d  |ble(sysvar$)....|
00000af0  21 62 6c 6f 63 6b 25 3d  30 0d 03 fc 39 c8 99 20  |!block%=0...9.. |
00000b00  22 58 4f 53 5f 52 65 61  64 56 61 72 56 61 6c 22  |"XOS_ReadVarVal"|
00000b10  2c 73 79 73 76 61 72 24  2c 62 6c 6f 63 6b 25 2c  |,sysvar$,block%,|
00000b20  2d 31 2c 30 2c 33 20 b8  20 2c 2c 6c 65 6e 67 74  |-1,0,3 . ,,lengt|
00000b30  68 25 0d 04 06 2d c8 99  20 22 4f 53 5f 52 65 61  |h%...-.. "OS_Rea|
00000b40  64 56 61 72 56 61 6c 22  2c 73 79 73 76 61 72 24  |dVarVal",sysvar$|
00000b50  2c 62 6c 6f 63 6b 25 2c  32 35 35 2c 30 2c 33 0d  |,block%,255,0,3.|
00000b60  04 10 0e 76 61 72 76 61  6c 24 3d 22 22 0d 04 1a  |...varval$=""...|
00000b70  1a e3 20 6c 6f 6f 70 25  20 3d 20 6c 65 6e 67 74  |.. loop% = lengt|
00000b80  68 25 20 b8 20 2d 32 0d  04 24 15 76 61 72 76 61  |h% . -2..$.varva|
00000b90  6c 24 2b 3d bd 3f 62 6c  6f 63 6b 25 0d 04 2e 0d  |l$+=.?block%....|
00000ba0  62 6c 6f 63 6b 25 2b 3d  31 0d 04 38 05 ed 0d 04  |block%+=1..8....|
00000bb0  42 0c 3d 76 61 72 76 61  6c 24 0d 04 4c 04 0d 04  |B.=varval$..L...|
00000bc0  56 10 dd f2 63 72 65 61  74 65 64 69 72 73 0d 04  |V...createdirs..|
00000bd0  60 2c f1 20 27 22 41 62  6f 75 74 20 74 6f 20 63  |`,. '"About to c|
00000be0  72 65 61 74 65 20 54 65  6d 70 6c 61 74 65 73 20  |reate Templates |
00000bf0  64 69 72 65 63 74 6f 72  79 22 0d 04 6a 19 f1 20  |directory"..j.. |
00000c00  22 69 6e 20 22 20 73 79  73 6c 6f 63 61 74 69 6f  |"in " syslocatio|
00000c10  6e 24 27 0d 04 74 37 f1  20 22 50 72 65 73 73 20  |n$'..t7. "Press |
00000c20  74 68 65 20 53 70 61 63  65 20 42 61 72 20 74 6f  |the Space Bar to|
00000c30  20 63 6f 6e 74 69 6e 75  65 20 6f 72 20 45 73 63  | continue or Esc|
00000c40  20 74 6f 20 71 75 69 74  22 3b 0d 04 7e 0c f5 20  | to quit";..~.. |
00000c50  fd 20 a5 3d 33 32 0d 04  88 2a f1 20 27 27 22 43  |. .=32...*. ''"C|
00000c60  72 65 61 74 69 6e 67 20  54 65 6d 70 6c 61 74 65  |reating Template|
00000c70  73 20 64 69 72 65 63 74  6f 72 79 2e 2e 2e 2e 22  |s directory...."|
00000c80  0d 04 92 23 ff 20 22 43  44 49 52 20 3c 53 79 73  |...#. "CDIR <Sys|
00000c90  74 65 6d 24 44 69 72 3e  2e 54 65 6d 70 6c 61 74  |tem$Dir>.Templat|
00000ca0  65 73 22 0d 04 9c 2d ff  20 22 43 44 49 52 20 3c  |es"...-. "CDIR <|
00000cb0  53 79 73 74 65 6d 24 44  69 72 3e 2e 54 65 6d 70  |System$Dir>.Temp|
00000cc0  6c 61 74 65 73 2e 41 44  46 53 46 69 6c 65 72 22  |lates.ADFSFiler"|
00000cd0  0d 04 a6 29 ff 20 22 43  44 49 52 20 3c 53 79 73  |...). "CDIR <Sys|
00000ce0  74 65 6d 24 44 69 72 3e  2e 54 65 6d 70 6c 61 74  |tem$Dir>.Templat|
00000cf0  65 73 2e 41 6c 61 72 6d  22 0d 04 b0 2b ff 20 22  |es.Alarm"...+. "|
00000d00  43 44 49 52 20 3c 53 79  73 74 65 6d 24 44 69 72  |CDIR <System$Dir|
00000d10  3e 2e 54 65 6d 70 6c 61  74 65 73 2e 41 70 70 44  |>.Templates.AppD|
00000d20  72 61 77 22 0d 04 ba 28  ff 20 22 43 44 49 52 20  |raw"...(. "CDIR |
00000d30  3c 53 79 73 74 65 6d 24  44 69 72 3e 2e 54 65 6d  |<System$Dir>.Tem|
00000d40  70 6c 61 74 65 73 2e 43  61 6c 63 22 0d 04 c4 2d  |plates.Calc"...-|
00000d50  ff 20 22 43 44 49 52 20  3c 53 79 73 74 65 6d 24  |. "CDIR <System$|
00000d60  44 69 72 3e 2e 54 65 6d  70 6c 61 74 65 73 2e 43  |Dir>.Templates.C|
00000d70  6f 6e 66 69 67 75 72 65  22 0d 04 ce 2e f4 20 4f  |onfigure"..... O|
00000d80  53 43 4c 49 20 22 43 44  49 52 20 3c 53 79 73 74  |SCLI "CDIR <Syst|
00000d90  65 6d 24 44 69 72 3e 2e  54 65 6d 70 6c 61 74 65  |em$Dir>.Template|
00000da0  73 2e 44 72 61 77 22 0d  04 d8 28 ff 20 22 43 44  |s.Draw"...(. "CD|
00000db0  49 52 20 3c 53 79 73 74  65 6d 24 44 69 72 3e 2e  |IR <System$Dir>.|
00000dc0  54 65 6d 70 6c 61 74 65  73 2e 45 64 69 74 22 0d  |Templates.Edit".|
00000dd0  04 e2 29 ff 20 22 43 44  49 52 20 3c 53 79 73 74  |..). "CDIR <Syst|
00000de0  65 6d 24 44 69 72 3e 2e  54 65 6d 70 6c 61 74 65  |em$Dir>.Template|
00000df0  73 2e 46 69 6c 65 72 22  0d 04 ec 2c ff 20 22 43  |s.Filer"...,. "C|
00000e00  44 49 52 20 3c 53 79 73  74 65 6d 24 44 69 72 3e  |DIR <System$Dir>|
00000e10  2e 54 65 6d 70 6c 61 74  65 73 2e 46 69 6c 65 72  |.Templates.Filer|
00000e20  41 63 74 22 0d 04 f6 28  ff 20 22 43 44 49 52 20  |Act"...(. "CDIR |
00000e30  3c 53 79 73 74 65 6d 24  44 69 72 3e 2e 54 65 6d  |<System$Dir>.Tem|
00000e40  70 6c 61 74 65 73 2e 46  72 65 65 22 0d 05 00 28  |plates.Free"...(|
00000e50  ff 20 22 43 44 49 52 20  3c 53 79 73 74 65 6d 24  |. "CDIR <System$|
00000e60  44 69 72 3e 2e 54 65 6d  70 6c 61 74 65 73 2e 48  |Dir>.Templates.H|
00000e70  65 6c 70 22 0d 05 0a 2c  ff 20 22 43 44 49 52 20  |elp"...,. "CDIR |
00000e80  3c 53 79 73 74 65 6d 24  44 69 72 3e 2e 54 65 6d  |<System$Dir>.Tem|
00000e90  70 6c 61 74 65 73 2e 4e  65 74 46 69 6c 65 72 22  |plates.NetFiler"|
00000ea0  0d 05 14 29 ff 20 22 43  44 49 52 20 3c 53 79 73  |...). "CDIR <Sys|
00000eb0  74 65 6d 24 44 69 72 3e  2e 54 65 6d 70 6c 61 74  |tem$Dir>.Templat|
00000ec0  65 73 2e 50 61 69 6e 74  22 0d 05 1e 2b ff 20 22  |es.Paint"...+. "|
00000ed0  43 44 49 52 20 3c 53 79  73 74 65 6d 24 44 69 72  |CDIR <System$Dir|
00000ee0  3e 2e 54 65 6d 70 6c 61  74 65 73 2e 50 61 6c 65  |>.Templates.Pale|
00000ef0  74 74 65 22 0d 05 28 2c  ff 20 22 43 44 49 52 20  |tte"..(,. "CDIR |
00000f00  3c 53 79 73 74 65 6d 24  44 69 72 3e 2e 54 65 6d  |<System$Dir>.Tem|
00000f10  70 6c 61 74 65 73 2e 50  69 6e 42 6f 61 72 64 22  |plates.PinBoard"|
00000f20  0d 05 32 2c ff 20 22 43  44 49 52 20 3c 53 79 73  |..2,. "CDIR <Sys|
00000f30  74 65 6d 24 44 69 72 3e  2e 54 65 6d 70 6c 61 74  |tem$Dir>.Templat|
00000f40  65 73 2e 50 72 69 6e 74  65 72 73 22 0d 05 3c 2c  |es.Printers"..<,|
00000f50  ff 20 22 43 44 49 52 20  3c 53 79 73 74 65 6d 24  |. "CDIR <System$|
00000f60  44 69 72 3e 2e 54 65 6d  70 6c 61 74 65 73 2e 53  |Dir>.Templates.S|
00000f70  77 69 74 63 68 65 72 22  0d 05 46 28 ff 20 22 43  |witcher"..F(. "C|
00000f80  44 49 52 20 3c 53 79 73  74 65 6d 24 44 69 72 3e  |DIR <System$Dir>|
00000f90  2e 54 65 6d 70 6c 61 74  65 73 2e 57 69 6d 70 22  |.Templates.Wimp"|
00000fa0  0d 05 50 05 e1 0d 05 5a  04 0d 05 64 11 dd f2 63  |..P....Z...d...c|
00000fb0  6f 70 79 72 6f 6d 61 70  70 73 0d 05 6e 30 f1 27  |opyromapps..n0.'|
00000fc0  22 43 6f 70 79 69 6e 67  20 74 65 6d 70 6c 61 74  |"Copying templat|
00000fd0  65 20 66 69 6c 65 73 20  66 72 6f 6d 20 52 6f 6d  |e files from Rom|
00000fe0  41 70 70 73 33 44 2e 2e  2e 22 0d 05 78 5b ff 20  |Apps3D..."..x[. |
00000ff0  22 43 6f 70 79 20 3c 52  65 73 24 44 69 72 3e 2e  |"Copy <Res$Dir>.|
00001000  41 44 46 53 46 69 6c 65  72 2e 54 65 6d 70 6c 61  |ADFSFiler.Templa|
00001010  74 65 73 20 3c 53 79 73  74 65 6d 24 44 69 72 3e  |tes <System$Dir>|
00001020  2e 54 65 6d 70 6c 61 74  65 73 2e 41 44 46 53 46  |.Templates.ADFSF|
00001030  69 6c 65 72 2e 54 65 6d  70 6c 61 74 65 73 20 7e  |iler.Templates ~|
00001040  43 20 7e 56 22 0d 05 82  53 ff 20 22 43 6f 70 79  |C ~V"...S. "Copy|
00001050  20 3c 52 65 73 24 44 69  72 3e 2e 41 6c 61 72 6d  | <Res$Dir>.Alarm|
00001060  2e 54 65 6d 70 6c 61 74  65 73 20 3c 53 79 73 74  |.Templates <Syst|
00001070  65 6d 24 44 69 72 3e 2e  54 65 6d 70 6c 61 74 65  |em$Dir>.Template|
00001080  73 2e 41 6c 61 72 6d 2e  54 65 6d 70 6c 61 74 65  |s.Alarm.Template|
00001090  73 20 7e 43 20 7e 56 22  0d 05 8c 57 ff 20 22 43  |s ~C ~V"...W. "C|
000010a0  6f 70 79 20 3c 52 65 73  24 44 69 72 3e 2e 41 70  |opy <Res$Dir>.Ap|
000010b0  70 44 72 61 77 2e 54 65  6d 70 6c 61 74 65 73 20  |pDraw.Templates |
000010c0  3c 53 79 73 74 65 6d 24  44 69 72 3e 2e 54 65 6d  |<System$Dir>.Tem|
000010d0  70 6c 61 74 65 73 2e 41  70 70 44 72 61 77 2e 54  |plates.AppDraw.T|
000010e0  65 6d 70 6c 61 74 65 73  20 7e 43 20 7e 56 22 0d  |emplates ~C ~V".|
000010f0  05 96 53 ff 20 22 43 6f  70 79 20 3c 52 65 73 24  |..S. "Copy <Res$|
00001100  44 69 72 3e 2e 41 70 70  44 72 61 77 2e 53 70 72  |Dir>.AppDraw.Spr|
00001110  69 74 65 73 20 3c 53 79  73 74 65 6d 24 44 69 72  |ites <System$Dir|
00001120  3e 2e 54 65 6d 70 6c 61  74 65 73 2e 41 70 70 44  |>.Templates.AppD|
00001130  72 61 77 2e 53 70 72 69  74 65 73 20 7e 43 20 7e  |raw.Sprites ~C ~|
00001140  56 22 0d 05 a0 51 ff 20  22 43 6f 70 79 20 3c 52  |V"...Q. "Copy <R|
00001150  65 73 24 44 69 72 3e 2e  43 61 6c 63 2e 54 65 6d  |es$Dir>.Calc.Tem|
00001160  70 6c 61 74 65 73 20 3c  53 79 73 74 65 6d 24 44  |plates <System$D|
00001170  69 72 3e 2e 54 65 6d 70  6c 61 74 65 73 2e 43 61  |ir>.Templates.Ca|
00001180  6c 63 2e 54 65 6d 70 6c  61 74 65 73 20 7e 43 20  |lc.Templates ~C |
00001190  7e 56 22 0d 05 aa 51 ff  20 22 43 6f 70 79 20 3c  |~V"...Q. "Copy <|
000011a0  52 65 73 24 44 69 72 3e  2e 43 61 6c 63 2e 21 52  |Res$Dir>.Calc.!R|
000011b0  75 6e 49 6d 61 67 65 20  3c 53 79 73 74 65 6d 24  |unImage <System$|
000011c0  44 69 72 3e 2e 54 65 6d  70 6c 61 74 65 73 2e 43  |Dir>.Templates.C|
000011d0  61 6c 63 2e 21 52 75 6e  49 6d 61 67 65 20 7e 43  |alc.!RunImage ~C|
000011e0  20 7e 56 22 0d 05 b4 5b  ff 20 22 43 6f 70 79 20  | ~V"...[. "Copy |
000011f0  3c 52 65 73 24 44 69 72  3e 2e 43 6f 6e 66 69 67  |<Res$Dir>.Config|
00001200  75 72 65 2e 54 65 6d 70  6c 61 74 65 73 20 3c 53  |ure.Templates <S|
00001210  79 73 74 65 6d 24 44 69  72 3e 2e 54 65 6d 70 6c  |ystem$Dir>.Templ|
00001220  61 74 65 73 2e 43 6f 6e  66 69 67 75 72 65 2e 54  |ates.Configure.T|
00001230  65 6d 70 6c 61 74 65 73  20 7e 43 20 7e 56 22 0d  |emplates ~C ~V".|
00001240  05 be 51 ff 20 22 43 6f  70 79 20 3c 52 65 73 24  |..Q. "Copy <Res$|
00001250  44 69 72 3e 2e 45 64 69  74 2e 54 65 6d 70 6c 61  |Dir>.Edit.Templa|
00001260  74 65 73 20 3c 53 79 73  74 65 6d 24 44 69 72 3e  |tes <System$Dir>|
00001270  2e 54 65 6d 70 6c 61 74  65 73 2e 45 64 69 74 2e  |.Templates.Edit.|
00001280  54 65 6d 70 6c 61 74 65  73 20 7e 43 20 7e 56 22  |Templates ~C ~V"|
00001290  0d 05 c8 53 ff 20 22 43  6f 70 79 20 3c 52 65 73  |...S. "Copy <Res|
000012a0  24 44 69 72 3e 2e 46 69  6c 65 72 2e 54 65 6d 70  |$Dir>.Filer.Temp|
000012b0  6c 61 74 65 73 20 3c 53  79 73 74 65 6d 24 44 69  |lates <System$Di|
000012c0  72 3e 2e 54 65 6d 70 6c  61 74 65 73 2e 46 69 6c  |r>.Templates.Fil|
000012d0  65 72 2e 54 65 6d 70 6c  61 74 65 73 20 7e 43 20  |er.Templates ~C |
000012e0  7e 56 22 0d 05 d2 59 ff  20 22 43 6f 70 79 20 3c  |~V"...Y. "Copy <|
000012f0  52 65 73 24 44 69 72 3e  2e 46 69 6c 65 72 41 63  |Res$Dir>.FilerAc|
00001300  74 2e 54 65 6d 70 6c 61  74 65 73 20 3c 53 79 73  |t.Templates <Sys|
00001310  74 65 6d 24 44 69 72 3e  2e 54 65 6d 70 6c 61 74  |tem$Dir>.Templat|
00001320  65 73 2e 46 69 6c 65 72  41 63 74 2e 54 65 6d 70  |es.FilerAct.Temp|
00001330  6c 61 74 65 73 20 7e 43  20 7e 56 22 0d 05 dc 51  |lates ~C ~V"...Q|
00001340  ff 20 22 43 6f 70 79 20  3c 52 65 73 24 44 69 72  |. "Copy <Res$Dir|
00001350  3e 2e 46 72 65 65 2e 54  65 6d 70 6c 61 74 65 73  |>.Free.Templates|
00001360  20 3c 53 79 73 74 65 6d  24 44 69 72 3e 2e 54 65  | <System$Dir>.Te|
00001370  6d 70 6c 61 74 65 73 2e  46 72 65 65 2e 54 65 6d  |mplates.Free.Tem|
00001380  70 6c 61 74 65 73 20 7e  43 20 7e 56 22 0d 05 e6  |plates ~C ~V"...|
00001390  51 ff 20 22 43 6f 70 79  20 3c 52 65 73 24 44 69  |Q. "Copy <Res$Di|
000013a0  72 3e 2e 48 65 6c 70 2e  54 65 6d 70 6c 61 74 65  |r>.Help.Template|
000013b0  73 20 3c 53 79 73 74 65  6d 24 44 69 72 3e 2e 54  |s <System$Dir>.T|
000013c0  65 6d 70 6c 61 74 65 73  2e 48 65 6c 70 2e 54 65  |emplates.Help.Te|
000013d0  6d 70 6c 61 74 65 73 20  7e 43 20 7e 56 22 0d 05  |mplates ~C ~V"..|
000013e0  f0 59 ff 20 22 43 6f 70  79 20 3c 52 65 73 24 44  |.Y. "Copy <Res$D|
000013f0  69 72 3e 2e 4e 65 74 46  69 6c 65 72 2e 54 65 6d  |ir>.NetFiler.Tem|
00001400  70 6c 61 74 65 73 20 3c  53 79 73 74 65 6d 24 44  |plates <System$D|
00001410  69 72 3e 2e 54 65 6d 70  6c 61 74 65 73 2e 4e 65  |ir>.Templates.Ne|
00001420  74 46 69 6c 65 72 2e 54  65 6d 70 6c 61 74 65 73  |tFiler.Templates|
00001430  20 7e 43 20 7e 56 22 0d  05 fa 53 ff 20 22 43 6f  | ~C ~V"...S. "Co|
00001440  70 79 20 3c 52 65 73 24  44 69 72 3e 2e 50 61 69  |py <Res$Dir>.Pai|
00001450  6e 74 2e 54 65 6d 70 6c  61 74 65 73 20 3c 53 79  |nt.Templates <Sy|
00001460  73 74 65 6d 24 44 69 72  3e 2e 54 65 6d 70 6c 61  |stem$Dir>.Templa|
00001470  74 65 73 2e 50 61 69 6e  74 2e 54 65 6d 70 6c 61  |tes.Paint.Templa|
00001480  74 65 73 20 7e 43 20 7e  56 22 0d 06 04 4f ff 20  |tes ~C ~V"...O. |
00001490  22 43 6f 70 79 20 3c 52  65 73 24 44 69 72 3e 2e  |"Copy <Res$Dir>.|
000014a0  50 61 69 6e 74 2e 53 70  72 69 74 65 73 20 3c 53  |Paint.Sprites <S|
000014b0  79 73 74 65 6d 24 44 69  72 3e 2e 54 65 6d 70 6c  |ystem$Dir>.Templ|
000014c0  61 74 65 73 2e 50 61 69  6e 74 2e 53 70 72 69 74  |ates.Paint.Sprit|
000014d0  65 73 20 7e 43 20 7e 56  22 0d 06 0e 57 ff 20 22  |es ~C ~V"...W. "|
000014e0  43 6f 70 79 20 3c 52 65  73 24 44 69 72 3e 2e 50  |Copy <Res$Dir>.P|
000014f0  61 6c 65 74 74 65 2e 54  65 6d 70 6c 61 74 65 73  |alette.Templates|
00001500  20 3c 53 79 73 74 65 6d  24 44 69 72 3e 2e 54 65  | <System$Dir>.Te|
00001510  6d 70 6c 61 74 65 73 2e  50 61 6c 65 74 74 65 2e  |mplates.Palette.|
00001520  54 65 6d 70 6c 61 74 65  73 20 7e 43 20 7e 56 22  |Templates ~C ~V"|
00001530  0d 06 18 59 ff 20 22 43  6f 70 79 20 3c 52 65 73  |...Y. "Copy <Res|
00001540  24 44 69 72 3e 2e 50 69  6e 62 6f 61 72 64 2e 54  |$Dir>.Pinboard.T|
00001550  65 6d 70 6c 61 74 65 73  20 3c 53 79 73 74 65 6d  |emplates <System|
00001560  24 44 69 72 3e 2e 54 65  6d 70 6c 61 74 65 73 2e  |$Dir>.Templates.|
00001570  50 69 6e 62 6f 61 72 64  2e 54 65 6d 70 6c 61 74  |Pinboard.Templat|
00001580  65 73 20 7e 43 20 7e 56  22 0d 06 22 59 ff 20 22  |es ~C ~V".."Y. "|
00001590  43 6f 70 79 20 3c 52 65  73 24 44 69 72 3e 2e 50  |Copy <Res$Dir>.P|
000015a0  72 69 6e 74 65 72 73 2e  54 65 6d 70 6c 61 74 65  |rinters.Template|
000015b0  73 20 3c 53 79 73 74 65  6d 24 44 69 72 3e 2e 54  |s <System$Dir>.T|
000015c0  65 6d 70 6c 61 74 65 73  2e 50 72 69 6e 74 65 72  |emplates.Printer|
000015d0  73 2e 54 65 6d 70 6c 61  74 65 73 20 7e 43 20 7e  |s.Templates ~C ~|
000015e0  56 22 0d 06 2c 59 ff 20  22 43 6f 70 79 20 3c 52  |V"..,Y. "Copy <R|
000015f0  65 73 24 44 69 72 3e 2e  53 77 69 74 63 68 65 72  |es$Dir>.Switcher|
00001600  2e 54 65 6d 70 6c 61 74  65 73 20 3c 53 79 73 74  |.Templates <Syst|
00001610  65 6d 24 44 69 72 3e 2e  54 65 6d 70 6c 61 74 65  |em$Dir>.Template|
00001620  73 2e 53 77 69 74 63 68  65 72 2e 54 65 6d 70 6c  |s.Switcher.Templ|
00001630  61 74 65 73 20 7e 43 20  7e 56 22 0d 06 36 51 ff  |ates ~C ~V"..6Q.|
00001640  20 22 43 6f 70 79 20 3c  52 65 73 24 44 69 72 3e  | "Copy <Res$Dir>|
00001650  2e 57 69 6d 70 2e 54 65  6d 70 6c 61 74 65 73 20  |.Wimp.Templates |
00001660  3c 53 79 73 74 65 6d 24  44 69 72 3e 2e 54 65 6d  |<System$Dir>.Tem|
00001670  70 6c 61 74 65 73 2e 57  69 6d 70 2e 54 65 6d 70  |plates.Wimp.Temp|
00001680  6c 61 74 65 73 20 7e 43  20 7e 56 22 0d 06 40 05  |lates ~C ~V"..@.|
00001690  e1 0d 06 4a 04 0d 06 54  11 dd f2 6d 6f 76 65 6f  |...J...T...moveo|
000016a0  6c 64 62 6f 6f 74 0d 06  5e 11 e7 20 62 6f 6f 74  |ldboot..^.. boot|
000016b0  25 3d a3 20 8c 20 e1 0d  06 68 34 f1 20 27 22 43  |%=. . ...h4. '"C|
000016c0  6f 70 79 69 6e 67 20 65  78 69 73 74 69 6e 67 20  |opying existing |
000016d0  22 2b 62 6f 6f 74 66 75  6c 6c 6e 61 6d 65 24 2b  |"+bootfullname$+|
000016e0  22 20 66 69 6c 65 20 74  6f 20 22 0d 06 72 28 f1  |" file to "..r(.|
000016f0  20 73 79 73 6c 6f 63 61  74 69 6f 6e 24 2b 22 2e  | syslocation$+".|
00001700  54 65 6d 70 6c 61 74 65  73 2e 4f 6c 64 21 42 6f  |Templates.Old!Bo|
00001710  6f 74 22 0d 06 7c 19 f1  20 22 66 6f 72 20 73 61  |ot"..|.. "for sa|
00001720  66 65 20 6b 65 65 70 69  6e 67 2e 22 0d 06 86 48  |fe keeping."...H|
00001730  ff 20 22 43 6f 70 79 20  22 2b 62 6f 6f 74 66 75  |. "Copy "+bootfu|
00001740  6c 6c 6e 61 6d 65 24 2b  22 20 3c 53 79 73 74 65  |llname$+" <Syste|
00001750  6d 24 44 69 72 3e 2e 54  65 6d 70 6c 61 74 65 73  |m$Dir>.Templates|
00001760  2e 4f 6c 64 21 42 6f 6f  74 20 46 20 44 20 7e 43  |.Old!Boot F D ~C|
00001770  20 7e 56 22 0d 06 90 05  e1 0d 06 9a 04 0d 06 a4  | ~V"............|
00001780  14 dd f2 65 78 61 6d 69  6e 65 6f 6c 64 62 6f 6f  |...examineoldboo|
00001790  74 0d 06 ae 11 e7 20 62  6f 6f 74 25 3d a3 20 8c  |t..... boot%=. .|
000017a0  20 e1 0d 06 b8 11 62 6f  72 64 65 72 75 74 69 6c  | .....borderutil|
000017b0  25 3d a3 0d 06 c2 27 f1  20 27 22 45 78 61 6d 69  |%=....'. '"Exami|
000017c0  6e 69 6e 67 20 79 6f 75  72 20 6f 6c 64 20 21 42  |ning your old !B|
000017d0  6f 6f 74 20 66 69 6c 65  2e 22 0d 06 cc 32 72 65  |oot file."...2re|
000017e0  61 64 62 6f 6f 74 25 3d  8e 28 22 3c 53 79 73 74  |adboot%=.("<Syst|
000017f0  65 6d 24 44 69 72 3e 2e  54 65 6d 70 6c 61 74 65  |em$Dir>.Template|
00001800  73 2e 4f 6c 64 21 42 6f  6f 74 22 29 0d 06 d6 05  |s.Old!Boot")....|
00001810  f5 0d 06 e0 11 20 62 6f  6f 74 6c 69 6e 65 24 3d  |..... bootline$=|
00001820  22 22 0d 06 ea 07 20 20  f5 0d 06 f4 1a 20 20 20  |""....  .....   |
00001830  63 68 61 72 25 3d 9a 23  28 72 65 61 64 62 6f 6f  |char%=.#(readboo|
00001840  74 25 29 0d 06 fe 28 20  20 20 e7 20 63 68 61 72  |t%)...(   . char|
00001850  25 20 3c 3e 20 31 30 20  8c 20 62 6f 6f 74 6c 69  |% <> 10 . bootli|
00001860  6e 65 24 2b 3d bd 63 68  61 72 25 0d 07 08 2a 20  |ne$+=.char%...* |
00001870  20 fd 20 63 68 61 72 25  3d 31 30 20 84 20 8f 23  | . char%=10 . .#|
00001880  72 65 61 64 62 6f 6f 74  25 3d a2 23 72 65 61 64  |readboot%=.#read|
00001890  62 6f 6f 74 25 0d 07 12  24 20 e7 20 c2 62 6f 6f  |boot%...$ . .boo|
000018a0  74 6c 69 6e 65 24 2c 31  30 29 3d 22 42 6f 72 64  |tline$,10)="Bord|
000018b0  65 72 55 74 69 6c 22 20  8c 0d 07 1c 29 20 20 f1  |erUtil" ....)  .|
000018c0  20 27 62 6f 6f 74 6c 69  6e 65 24 2b 22 20 66 6f  | 'bootline$+" fo|
000018d0  75 6e 64 2c 20 61 6c 6c  20 69 73 20 77 65 6c 6c  |und, all is well|
000018e0  2e 22 0d 07 26 13 20 20  62 6f 72 64 65 72 75 74  |."..&.  borderut|
000018f0  69 6c 25 3d b9 0d 07 30  06 20 cd 0d 07 3a 1d fd  |il%=...0. ...:..|
00001900  20 8f 23 72 65 61 64 62  6f 6f 74 25 3d a2 23 72  | .#readboot%=.#r|
00001910  65 61 64 62 6f 6f 74 25  0d 07 44 0f d9 23 72 65  |eadboot%..D..#re|
00001920  61 64 62 6f 6f 74 25 0d  07 4e 15 e7 20 62 6f 72  |adboot%..N.. bor|
00001930  64 65 72 75 74 69 6c 25  3d a3 20 8c 0d 07 58 27  |derutil%=. ...X'|
00001940  20 f1 20 27 22 42 6f 72  64 65 72 55 74 69 6c 73  | . '"BorderUtils|
00001950  20 6d 6f 64 75 6c 65 20  6e 6f 74 20 66 6f 75 6e  | module not foun|
00001960  64 2e 22 0d 07 62 05 cd  0d 07 6c 05 e1 0d 07 76  |d."..b....l....v|
00001970  04 0d 07 80 13 dd f2 63  72 65 61 74 65 6e 65 77  |.......createnew|
00001980  62 6f 6f 74 0d 07 8a 3b  f4 20 4d 61 6b 65 20 73  |boot...;. Make s|
00001990  75 72 65 20 74 68 65 20  63 6f 6e 66 69 67 75 72  |ure the configur|
000019a0  65 64 20 62 6f 6f 74 20  61 63 74 69 6f 6e 20 72  |ed boot action r|
000019b0  75 6e 73 20 61 20 62 6f  6f 74 20 66 69 6c 65 0d  |uns a boot file.|
000019c0  07 94 16 ff 20 22 43 6f  6e 66 69 67 75 72 65 20  |.... "Configure |
000019d0  42 6f 6f 74 22 0d 07 9e  2d f1 20 27 22 43 72 65  |Boot"...-. '"Cre|
000019e0  61 74 69 6e 67 20 6e 65  77 20 21 42 6f 6f 74 20  |ating new !Boot |
000019f0  61 74 20 22 2b 62 6f 6f  74 66 75 6c 6c 6e 61 6d  |at "+bootfullnam|
00001a00  65 24 0d 07 a8 1f 77 72  69 74 65 62 6f 6f 74 25  |e$....writeboot%|
00001a10  3d ae 28 62 6f 6f 74 66  75 6c 6c 6e 61 6d 65 24  |=.(bootfullname$|
00001a20  29 0d 07 b2 30 d5 23 77  72 69 74 65 62 6f 6f 74  |)...0.#writeboot|
00001a30  25 2c 22 7c 20 2a 2a 20  20 4c 6f 63 61 74 69 6f  |%,"| **  Locatio|
00001a40  6e 20 6f 66 20 21 53 79  73 74 65 6d 20 20 2a 2a  |n of !System  **|
00001a50  22 0d 07 bc 2f d5 23 77  72 69 74 65 62 6f 6f 74  |".../.#writeboot|
00001a60  25 2c 22 53 65 74 20 53  79 73 74 65 6d 24 44 69  |%,"Set System$Di|
00001a70  72 20 22 2b 73 79 73 6c  6f 63 61 74 69 6f 6e 24  |r "+syslocation$|
00001a80  0d 07 c6 36 d5 23 77 72  69 74 65 62 6f 6f 74 25  |...6.#writeboot%|
00001a90  2c 22 7c 20 2a 2a 20 20  53 74 61 72 74 20 6f 66  |,"| **  Start of|
00001aa0  20 52 6f 6d 41 70 70 73  33 44 20 70 61 74 68 73  | RomApps3D paths|
00001ab0  2e 20 20 2a 2a 22 0d 07  d0 4c d5 23 77 72 69 74  |.  **"...L.#writ|
00001ac0  65 62 6f 6f 74 25 2c 22  53 65 74 20 46 69 6c 65  |eboot%,"Set File|
00001ad0  72 24 50 61 74 68 20 3c  53 79 73 74 65 6d 24 44  |r$Path <System$D|
00001ae0  69 72 3e 2e 54 65 6d 70  6c 61 74 65 73 2e 46 69  |ir>.Templates.Fi|
00001af0  6c 65 72 2e 2c 3c 46 69  6c 65 72 24 50 61 74 68  |ler.,<Filer$Path|
00001b00  3e 22 0d 07 da 55 d5 23  77 72 69 74 65 62 6f 6f  |>"...U.#writeboo|
00001b10  74 25 2c 22 53 65 74 20  46 69 6c 65 72 41 63 74  |t%,"Set FilerAct|
00001b20  24 50 61 74 68 20 3c 53  79 73 74 65 6d 24 44 69  |$Path <System$Di|
00001b30  72 3e 2e 54 65 6d 70 6c  61 74 65 73 2e 46 69 6c  |r>.Templates.Fil|
00001b40  65 72 41 63 74 2e 2c 3c  46 69 6c 65 72 41 63 74  |erAct.,<FilerAct|
00001b50  24 50 61 74 68 3e 22 0d  07 e4 52 d5 23 77 72 69  |$Path>"...R.#wri|
00001b60  74 65 62 6f 6f 74 25 2c  22 53 65 74 20 50 61 6c  |teboot%,"Set Pal|
00001b70  65 74 74 65 24 50 61 74  68 20 3c 53 79 73 74 65  |ette$Path <Syste|
00001b80  6d 24 44 69 72 3e 2e 54  65 6d 70 6c 61 74 65 73  |m$Dir>.Templates|
00001b90  2e 50 61 6c 65 74 74 65  2e 2c 3c 50 61 6c 65 74  |.Palette.,<Palet|
00001ba0  74 65 24 50 61 74 68 3e  22 0d 07 ee 55 d5 23 77  |te$Path>"...U.#w|
00001bb0  72 69 74 65 62 6f 6f 74  25 2c 22 53 65 74 20 53  |riteboot%,"Set S|
00001bc0  77 69 74 63 68 65 72 24  50 61 74 68 20 3c 53 79  |witcher$Path <Sy|
00001bd0  73 74 65 6d 24 44 69 72  3e 2e 54 65 6d 70 6c 61  |stem$Dir>.Templa|
00001be0  74 65 73 2e 53 77 69 74  63 68 65 72 2e 2c 3c 53  |tes.Switcher.,<S|
00001bf0  77 69 74 63 68 65 72 24  50 61 74 68 3e 22 0d 07  |witcher$Path>"..|
00001c00  f8 58 d5 23 77 72 69 74  65 62 6f 6f 74 25 2c 22  |.X.#writeboot%,"|
00001c10  53 65 74 20 41 44 46 53  46 69 6c 65 72 24 50 61  |Set ADFSFiler$Pa|
00001c20  74 68 20 3c 53 79 73 74  65 6d 24 44 69 72 3e 2e  |th <System$Dir>.|
00001c30  54 65 6d 70 6c 61 74 65  73 2e 41 44 46 53 46 69  |Templates.ADFSFi|
00001c40  6c 65 72 2e 2c 3c 41 44  46 53 46 69 6c 65 72 24  |ler.,<ADFSFiler$|
00001c50  50 61 74 68 3e 22 0d 08  02 49 d5 23 77 72 69 74  |Path>"...I.#writ|
00001c60  65 62 6f 6f 74 25 2c 22  53 65 74 20 46 72 65 65  |eboot%,"Set Free|
00001c70  24 50 61 74 68 20 3c 53  79 73 74 65 6d 24 44 69  |$Path <System$Di|
00001c80  72 3e 2e 54 65 6d 70 6c  61 74 65 73 2e 46 72 65  |r>.Templates.Fre|
00001c90  65 2e 2c 3c 46 72 65 65  24 50 61 74 68 3e 22 0d  |e.,<Free$Path>".|
00001ca0  08 0c 55 d5 23 77 72 69  74 65 62 6f 6f 74 25 2c  |..U.#writeboot%,|
00001cb0  22 53 65 74 20 50 69 6e  62 6f 61 72 64 24 50 61  |"Set Pinboard$Pa|
00001cc0  74 68 20 3c 53 79 73 74  65 6d 24 44 69 72 3e 2e  |th <System$Dir>.|
00001cd0  54 65 6d 70 6c 61 74 65  73 2e 50 69 6e 62 6f 61  |Templates.Pinboa|
00001ce0  72 64 2e 2c 3c 50 69 6e  62 6f 61 72 64 24 50 61  |rd.,<Pinboard$Pa|
00001cf0  74 68 3e 22 0d 08 16 35  d5 23 77 72 69 74 65 62  |th>"...5.#writeb|
00001d00  6f 6f 74 25 2c 22 7c 20  20 2a 2a 20 20 45 6e 64  |oot%,"|  **  End|
00001d10  20 6f 66 20 52 6f 6d 41  70 70 73 33 44 20 70 61  | of RomApps3D pa|
00001d20  74 68 73 2e 20 20 2a 2a  22 0d 08 20 52 d5 23 77  |ths.  **".. R.#w|
00001d30  72 69 74 65 62 6f 6f 74  25 2c 22 52 4d 65 6e 73  |riteboot%,"RMens|
00001d40  75 72 65 20 41 70 70 73  33 44 6d 6f 64 73 20 31  |ure Apps3Dmods 1|
00001d50  2e 36 30 20 52 4d 6c 6f  61 64 20 3c 53 79 73 74  |.60 RMload <Syst|
00001d60  65 6d 24 44 69 72 3e 2e  4d 6f 64 75 6c 65 73 2e  |em$Dir>.Modules.|
00001d70  41 70 70 73 33 44 6d 6f  64 73 22 0d 08 2a 15 e7  |Apps3Dmods"..*..|
00001d80  20 62 6f 72 64 65 72 75  74 69 6c 25 3d a3 20 8c  | borderutil%=. .|
00001d90  0d 08 34 54 20 d5 23 77  72 69 74 65 62 6f 6f 74  |..4T .#writeboot|
00001da0  25 2c 22 52 4d 65 6e 73  75 72 65 20 42 6f 72 64  |%,"RMensure Bord|
00001db0  65 72 55 74 69 6c 73 20  30 2e 30 32 20 52 4d 6c  |erUtils 0.02 RMl|
00001dc0  6f 61 64 20 3c 53 79 73  74 65 6d 24 44 69 72 3e  |oad <System$Dir>|
00001dd0  2e 4d 6f 64 75 6c 65 73  2e 42 6f 72 64 65 72 55  |.Modules.BorderU|
00001de0  74 69 6c 22 0d 08 3e 34  20 f1 20 27 22 41 64 64  |til"..>4 . '"Add|
00001df0  69 6e 67 20 52 4d 65 6e  73 75 72 65 20 42 6f 72  |ing RMensure Bor|
00001e00  64 65 72 55 74 69 6c 73  20 74 6f 20 21 42 6f 6f  |derUtils to !Boo|
00001e10  74 20 66 69 6c 65 2e 22  0d 08 48 05 cd 0d 08 52  |t file."..H....R|
00001e20  26 e7 20 62 6f 6f 74 25  3d a3 20 8c 20 d5 23 77  |&. boot%=. . .#w|
00001e30  72 69 74 65 62 6f 6f 74  25 2c 22 44 65 73 6b 54  |riteboot%,"DeskT|
00001e40  6f 70 22 0d 08 5c 10 d9  23 77 72 69 74 65 62 6f  |op"..\..#writebo|
00001e50  6f 74 25 0d 08 66 45 e7  20 62 6f 6f 74 25 3d b9  |ot%..fE. boot%=.|
00001e60  20 80 20 62 6f 6f 74 74  79 70 65 25 3d b9 20 8c  | . boottype%=. .|
00001e70  20 c8 99 20 22 4f 53 5f  46 69 6c 65 22 2c 31 38  | .. "OS_File",18|
00001e80  2c 62 6f 6f 74 66 75 6c  6c 6e 61 6d 65 24 2c 66  |,bootfullname$,f|
00001e90  69 6c 65 74 79 70 65 25  0d 08 70 36 e7 20 62 6f  |iletype%..p6. bo|
00001ea0  6f 74 25 3d a3 20 8c 20  c8 99 20 22 4f 53 5f 46  |ot%=. . .. "OS_F|
00001eb0  69 6c 65 22 2c 31 38 2c  62 6f 6f 74 66 75 6c 6c  |ile",18,bootfull|
00001ec0  6e 61 6d 65 24 2c 64 65  73 6b 74 6f 70 25 0d 08  |name$,desktop%..|
00001ed0  7a 05 e1 0d 08 84 04 0d  08 8e 0f dd f2 6a 6f 69  |z............joi|
00001ee0  6e 62 6f 6f 74 73 0d 08  98 11 e7 20 62 6f 6f 74  |nboots..... boot|
00001ef0  25 3d a3 20 8c 20 e1 0d  08 a2 2f f1 20 27 22 41  |%=. . ..../. '"A|
00001f00  64 64 69 6e 67 20 79 6f  75 72 20 6f 6c 64 20 21  |dding your old !|
00001f10  42 6f 6f 74 20 74 6f 20  74 68 65 20 6e 65 77 20  |Boot to the new |
00001f20  21 42 6f 6f 74 22 0d 08  ac 32 72 65 61 64 62 6f  |!Boot"...2readbo|
00001f30  6f 74 25 3d 8e 28 22 3c  53 79 73 74 65 6d 24 44  |ot%=.("<System$D|
00001f40  69 72 3e 2e 54 65 6d 70  6c 61 74 65 73 2e 4f 6c  |ir>.Templates.Ol|
00001f50  64 21 42 6f 6f 74 22 29  0d 08 b6 1f 77 72 69 74  |d!Boot")....writ|
00001f60  65 62 6f 6f 74 25 3d ad  28 62 6f 6f 74 66 75 6c  |eboot%=.(bootful|
00001f70  6c 6e 61 6d 65 24 29 0d  08 c0 1d cf 23 77 72 69  |lname$).....#wri|
00001f80  74 65 62 6f 6f 74 25 3d  a2 23 77 72 69 74 65 62  |teboot%=.#writeb|
00001f90  6f 6f 74 25 0d 08 ca 05  f5 0d 08 d4 11 20 62 6f  |oot%......... bo|
00001fa0  6f 74 6c 69 6e 65 24 3d  22 22 0d 08 de 07 20 20  |otline$=""....  |
00001fb0  f5 0d 08 e8 1a 20 20 20  63 68 61 72 25 3d 9a 23  |.....   char%=.#|
00001fc0  28 72 65 61 64 62 6f 6f  74 25 29 0d 08 f2 28 20  |(readboot%)...( |
00001fd0  20 20 e7 20 63 68 61 72  25 20 3c 3e 20 31 30 20  |  . char% <> 10 |
00001fe0  8c 20 62 6f 6f 74 6c 69  6e 65 24 2b 3d bd 63 68  |. bootline$+=.ch|
00001ff0  61 72 25 0d 08 fc 2a 20  20 fd 20 63 68 61 72 25  |ar%...*  . char%|
00002000  3d 31 30 20 84 20 8f 23  72 65 61 64 62 6f 6f 74  |=10 . .#readboot|
00002010  25 3d a2 23 72 65 61 64  62 6f 6f 74 25 0d 09 06  |%=.#readboot%...|
00002020  22 20 e7 20 c2 62 6f 6f  74 6c 69 6e 65 24 2c 39  |" . .bootline$,9|
00002030  29 3d 22 52 4f 4d 41 70  70 73 33 44 22 20 8c 0d  |)="ROMApps3D" ..|
00002040  09 10 12 20 20 f1 20 27  62 6f 6f 74 6c 69 6e 65  |...  . 'bootline|
00002050  24 0d 09 1a 2f 20 20 f1  20 22 68 61 73 20 62 65  |$.../  . "has be|
00002060  65 6e 20 72 65 6d 6f 76  65 64 20 66 72 6f 6d 20  |en removed from |
00002070  74 68 65 20 21 42 6f 6f  74 20 66 69 6c 65 2e 22  |the !Boot file."|
00002080  0d 09 24 12 20 20 62 6f  6f 74 6c 69 6e 65 24 3d  |..$.  bootline$=|
00002090  22 22 0d 09 2e 06 20 cd  0d 09 38 2d 20 e7 20 62  |"".... ...8- . b|
000020a0  6f 6f 74 6c 69 6e 65 24  20 3c 3e 20 22 22 20 d5  |ootline$ <> "" .|
000020b0  23 77 72 69 74 65 62 6f  6f 74 25 2c 62 6f 6f 74  |#writeboot%,boot|
000020c0  6c 69 6e 65 24 0d 09 42  1d fd 20 8f 23 72 65 61  |line$..B.. .#rea|
000020d0  64 62 6f 6f 74 25 3d a2  23 72 65 61 64 62 6f 6f  |dboot%=.#readboo|
000020e0  74 25 0d 09 4c 0f d9 23  72 65 61 64 62 6f 6f 74  |t%..L..#readboot|
000020f0  25 0d 09 56 10 d9 23 77  72 69 74 65 62 6f 6f 74  |%..V..#writeboot|
00002100  25 0d 09 60 05 e1 0d 09  6a 04 0d 09 74 14 dd f2  |%..`....j...t...|
00002110  63 6f 70 79 61 70 70 73  33 64 6d 6f 64 73 0d 09  |copyapps3dmods..|
00002120  7e 1f f1 20 27 22 43 6f  70 79 69 6e 67 20 41 70  |~.. '"Copying Ap|
00002130  70 73 33 44 6d 6f 64 73  20 74 6f 20 22 0d 09 88  |ps3Dmods to "...|
00002140  28 f1 20 73 79 73 6c 6f  63 61 74 69 6f 6e 24 2b  |(. syslocation$+|
00002150  22 2e 4d 6f 64 75 6c 65  73 2e 41 70 70 73 33 44  |".Modules.Apps3D|
00002160  6d 6f 64 73 22 0d 09 92  4f ff 20 22 43 6f 70 79  |mods"...O. "Copy|
00002170  20 3c 33 44 52 61 6d 46  72 65 65 24 44 69 72 3e  | <3DRamFree$Dir>|
00002180  2e 41 70 70 73 33 44 6d  6f 64 73 20 3c 53 79 73  |.Apps3Dmods <Sys|
00002190  74 65 6d 24 44 69 72 3e  2e 4d 6f 64 75 6c 65 73  |tem$Dir>.Modules|
000021a0  2e 41 70 70 73 33 44 6d  6f 64 73 20 46 20 7e 43  |.Apps3Dmods F ~C|
000021b0  20 7e 56 22 0d 09 9c 2e  ff 20 22 52 4d 4c 6f 61  | ~V"..... "RMLoa|
000021c0  64 20 3c 53 79 73 74 65  6d 24 44 69 72 3e 2e 4d  |d <System$Dir>.M|
000021d0  6f 64 75 6c 65 73 2e 41  70 70 73 33 44 6d 6f 64  |odules.Apps3Dmod|
000021e0  73 22 0d 09 a6 05 e1 0d  09 b0 04 0d 09 ba 09 dd  |s"..............|
000021f0  f2 65 6e 64 0d 09 c4 39  f1 20 27 22 45 6e 64 20  |.end...9. '"End |
00002200  6f 66 20 70 72 6f 67 72  61 6d 2e 20 53 68 75 74  |of program. Shut|
00002210  20 64 6f 77 6e 20 74 68  65 20 63 6f 6d 70 75 74  | down the comput|
00002220  65 72 20 61 6e 64 20 72  65 73 65 74 22 0d 09 ce  |er and reset"...|
00002230  2f f1 20 22 69 74 20 66  6f 72 20 74 68 65 20 63  |/. "it for the c|
00002240  68 61 6e 67 65 73 20 74  6f 20 63 6f 6d 65 20 69  |hanges to come i|
00002250  6e 74 6f 20 65 66 66 65  63 74 2e 22 0d 09 d8 32  |nto effect."...2|
00002260  f1 20 27 22 49 66 20 79  6f 75 20 61 72 65 20 75  |. '"If you are u|
00002270  73 69 6e 67 20 74 68 65  20 21 4e 65 77 4c 6f 6f  |sing the !NewLoo|
00002280  6b 20 61 70 70 6c 69 63  61 74 69 6f 6e 22 0d 09  |k application"..|
00002290  e2 2f f1 20 22 72 65 61  64 20 74 68 65 20 68 65  |./. "read the he|
000022a0  6c 70 20 66 69 6c 65 20  6f 6e 20 68 6f 77 20 74  |lp file on how t|
000022b0  6f 20 70 72 65 76 65 6e  74 20 69 74 22 0d 09 ec  |o prevent it"...|
000022c0  2a f1 20 22 66 72 6f 6d  20 6c 6f 61 64 69 6e 67  |*. "from loading|
000022d0  20 74 68 65 20 52 4f 4d  41 70 70 73 33 44 20 6d  | the ROMApps3D m|
000022e0  6f 64 75 6c 65 2e 22 0d  09 f6 2b f1 20 27 22 50  |odule."...+. '"P|
000022f0  72 65 73 73 20 46 33 20  74 6f 20 73 61 76 65 20  |ress F3 to save |
00002300  74 68 69 73 20 69 6e 66  6f 72 6d 61 74 69 6f 6e  |this information|
00002310  2e 22 0d 0a 00 05 e0 0d  0a 0a 05 e1 0d ff        |."............|
0000231e