Home » Archimedes archive » Acorn User » AU 1994-Xmas.adf » Programs » StarInfo/Pearson/!3DRamFree/!Help
StarInfo/Pearson/!3DRamFree/!Help
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 1994-Xmas.adf » Programs |
Filename: | StarInfo/Pearson/!3DRamFree/!Help |
Read OK: | ✔ |
File size: | 1937 bytes |
Load address: | 0000 |
Exec address: | 0000 |
File contents
** !3DRamFree Help file ** ** Releases 84k ram when using RomApps3D ** ** By Nick Pearson ** ** 20/6/94 ** If you have been using Acorn's !NewLook application to give you the 3D look for the desktop, then you would probably have altered your !Boot file to include the loading of ROMApps3D and BorderUtils to complete the effect by having the new template files for the Rom based applications. This is great if you have 88k of ram to spare because ROMApps3D sits in your module area taking up space whether you use it or not. To make matters worse if a program that uses the new templates files is loaded it puts a copy of its template file in its own workspace so you have two lots in ram (OK so the second copy is lost when the application quits but you can see my point). Enter !3DRamFree. As the program progresses it tells you what is happening and you can save this script as a text file to examine. This program copies the new files in ROMApps3D to a new directory called Templates in your !System application. It then alters your !Boot file (putting a copy of the original in the new Templates directory for safe keeping) by adding paths to point to the new location. If you do not have a !Boot file it will create one. For example: normally Filer$Path would point to "Resources:$.Resources.Filer." and this is where Filer would look for any of its resources. This is set up by Risc OS 3 when the computer is switched on or reset. Get a task window (press Ctrl F12) and type: Show Filer$Path to see the path on your computer. By adding this next line to the !Boot file: Set Filer$Path <System$Dir>.Templates.Filer.,<Filer$Path> we make Filer look at the new location FIRST and then at the old location second. This way we don't need to have all of the the applications resources in the new directory, only the bits that need replacing. That takes care of some programs but others like !Draw set their paths when they are launched, and the !Run files that do this are in Rom. Not easy to change. However we can 'overwrite' them (just as ROMApps3D did for the other files) and this is what the module Apps3Dmods does (created by Register, Acorn User November 1992). !Alarm, !Calc, !Configure, !Draw, !Edit !Help, !Paint. All the !Run files in these applications have had their Paths 'added to' and look very much the same as they were; except for !Alarm which I've changed slightly to stop it complaining when you try to run two copies. It checks to see if !Alarm is running and if it is, it stops. That simple. Apps3Dmods is just under 4k long so you are effectively claiming back 84k of ram, free. Program requirements: Acorn's module ROMApps3D (filename ROMApps3D) should be loaded before running !3DRamFree and you will be warned if it isn't. Thereafter it will not be needed. Acorn's module BorderUtils (filename BorderUtil) should be loaded before running !3DRamFree and you will be warned if it isn't. It will always be needed and should be copied to '<System$Dir.Modules' as this path will be in the new !Boot file if it isn't already present. Both these modules are inside Acorn's !NewLook and can be found by shift-double clicking on !NewLook to open the application directory. If you are already loading them from your existing !Boot file then the ROMApps3D execution line will be removed and the BorderUtil execution line will be acknowledged. The exact Acorn spelling is important as well as character case for the modules to be spotted. The !System application must have been seen by Filer and is assumed (not unreasonably) to be on the filing system that will be booted. The new Templates directory will be created here and it would be a good idea to lock the contents of this directory to prevent accidental deletion, depending on how likely this is to happen, the choice is yours. If you do not have a !Boot file then !3DRamFree will create one and set everything up for it to be implemented. The new !Boot file will be typed as a DeskTop file and will be executed using *Opt 4,3. If you do have a !Boot file then it will be added to the end of the new one, to maintain the last line which should be *DeskTop (plus any options), and your file type and *Opt4,n settings used. If you are using *Opt4,2 to run a !Boot file other than DeskTop, Obey or Command types then it will be assumed to be a machine code program and stop there and then, not doing anything. If your !Boot file is an application directory, RiscPC style, then it will be assumed to be on a RiscPc and again stop there and then, not doing anything. This is because you will already have the benefits this program offers built in to your computer. If it isn't a RiscPc then you must have altered your !Boot file to look like one and must revert back to a standard set up for the changes to be made and then recreate your !Boot application directory as it was. Using disc based templates is best suited to a hard disc but will work on floppy systems. Indeed for an easy demonstration of what will happen you could copy your !System directory to a floppy disc. Double click on it to reset its paths. Copy your !Boot file to the floppy and then double click on !3DRamFree. You can then examine the !Boot file and !System directory for the changes that will have been carried out. The new module Apps3Dmods is checked for when !3DRamFree starts up and if found an error will be generated. This is to prevent the !Boot file from being altered more than once, which would be a waste of time. Of course you can always *RMKill Apps3Dmods to allow !3DramFree to run again but you have been warned. If, by some bizarre coincidence, you already have a module called Apps3Dmods then you could load my module into !Edit using shift-double-click and alter its name, character for character, ensuring the name length does not change (overwrite is best for this). You would then have to alter the !Run & main !Boot files to suit to complete your mods. The program itself multitasks in a TaskWindow obtained in the !Run file by the command '*TaskWindow Run"<3DRamFree$Dir>.!RunImage" -wimpslot 128k -name 3DRamFree -display -quit' and is suited to such text based programs. !Edit is the 'owner' of the TaskWindow so don't be surprised if you see it on the icon bar.
00000000 20 20 20 20 20 20 20 20 20 20 20 20 2a 2a 20 20 | ** | 00000010 20 20 20 20 20 20 20 21 33 44 52 61 6d 46 72 65 | !3DRamFre| 00000020 65 20 20 48 65 6c 70 20 66 69 6c 65 20 20 20 20 |e Help file | 00000030 20 20 20 20 20 2a 2a 0a 0a 20 20 20 20 20 20 20 | **.. | 00000040 20 20 20 20 20 2a 2a 20 52 65 6c 65 61 73 65 73 | ** Releases| 00000050 20 38 34 6b 20 72 61 6d 20 77 68 65 6e 20 75 73 | 84k ram when us| 00000060 69 6e 67 20 52 6f 6d 41 70 70 73 33 44 20 2a 2a |ing RomApps3D **| 00000070 0a 20 20 20 20 20 20 20 20 20 20 20 20 0a 20 20 |. . | 00000080 20 20 20 20 20 20 20 20 20 20 2a 2a 20 20 20 20 | ** | 00000090 20 20 20 20 20 20 20 20 42 79 20 4e 69 63 6b 20 | By Nick | 000000a0 50 65 61 72 73 6f 6e 20 20 20 20 20 20 20 20 20 |Pearson | 000000b0 20 20 20 2a 2a 0a 0a 20 20 20 20 20 20 20 20 20 | **.. | 000000c0 20 20 20 2a 2a 20 20 20 20 20 20 20 20 20 20 20 | ** | 000000d0 20 20 20 20 20 20 32 30 2f 36 2f 39 34 20 20 20 | 20/6/94 | 000000e0 20 20 20 20 20 20 20 20 20 20 20 20 2a 2a 0a 0a | **..| 000000f0 49 66 20 79 6f 75 20 68 61 76 65 20 62 65 65 6e |If you have been| 00000100 20 75 73 69 6e 67 20 41 63 6f 72 6e 27 73 20 21 | using Acorn's !| 00000110 4e 65 77 4c 6f 6f 6b 20 61 70 70 6c 69 63 61 74 |NewLook applicat| 00000120 69 6f 6e 20 74 6f 20 67 69 76 65 20 79 6f 75 20 |ion to give you | 00000130 74 68 65 20 33 44 20 6c 6f 6f 6b 20 66 6f 72 20 |the 3D look for | 00000140 74 68 65 20 64 65 73 6b 74 6f 70 2c 20 74 68 65 |the desktop, the| 00000150 6e 20 79 6f 75 20 77 6f 75 6c 64 20 70 72 6f 62 |n you would prob| 00000160 61 62 6c 79 20 68 61 76 65 20 61 6c 74 65 72 65 |ably have altere| 00000170 64 20 79 6f 75 72 20 21 42 6f 6f 74 20 66 69 6c |d your !Boot fil| 00000180 65 20 74 6f 20 69 6e 63 6c 75 64 65 20 74 68 65 |e to include the| 00000190 20 6c 6f 61 64 69 6e 67 20 6f 66 20 52 4f 4d 41 | loading of ROMA| 000001a0 70 70 73 33 44 20 61 6e 64 20 42 6f 72 64 65 72 |pps3D and Border| 000001b0 55 74 69 6c 73 20 74 6f 20 63 6f 6d 70 6c 65 74 |Utils to complet| 000001c0 65 20 74 68 65 20 65 66 66 65 63 74 20 62 79 20 |e the effect by | 000001d0 68 61 76 69 6e 67 20 74 68 65 20 6e 65 77 20 74 |having the new t| 000001e0 65 6d 70 6c 61 74 65 20 66 69 6c 65 73 20 66 6f |emplate files fo| 000001f0 72 20 74 68 65 20 52 6f 6d 20 62 61 73 65 64 20 |r the Rom based | 00000200 61 70 70 6c 69 63 61 74 69 6f 6e 73 2e 0a 0a 54 |applications...T| 00000210 68 69 73 20 69 73 20 67 72 65 61 74 20 69 66 20 |his is great if | 00000220 79 6f 75 20 68 61 76 65 20 38 38 6b 20 6f 66 20 |you have 88k of | 00000230 72 61 6d 20 74 6f 20 73 70 61 72 65 20 62 65 63 |ram to spare bec| 00000240 61 75 73 65 20 52 4f 4d 41 70 70 73 33 44 20 73 |ause ROMApps3D s| 00000250 69 74 73 20 69 6e 20 79 6f 75 72 20 6d 6f 64 75 |its in your modu| 00000260 6c 65 20 61 72 65 61 20 74 61 6b 69 6e 67 20 75 |le area taking u| 00000270 70 20 73 70 61 63 65 20 77 68 65 74 68 65 72 20 |p space whether | 00000280 79 6f 75 20 75 73 65 20 69 74 20 6f 72 20 6e 6f |you use it or no| 00000290 74 2e 20 54 6f 20 6d 61 6b 65 20 6d 61 74 74 65 |t. To make matte| 000002a0 72 73 20 77 6f 72 73 65 20 69 66 20 61 20 70 72 |rs worse if a pr| 000002b0 6f 67 72 61 6d 20 74 68 61 74 20 75 73 65 73 20 |ogram that uses | 000002c0 74 68 65 20 6e 65 77 20 74 65 6d 70 6c 61 74 65 |the new template| 000002d0 73 20 66 69 6c 65 73 20 69 73 20 6c 6f 61 64 65 |s files is loade| 000002e0 64 20 69 74 20 70 75 74 73 20 61 20 63 6f 70 79 |d it puts a copy| 000002f0 20 6f 66 20 69 74 73 20 74 65 6d 70 6c 61 74 65 | of its template| 00000300 20 66 69 6c 65 20 69 6e 20 69 74 73 20 6f 77 6e | file in its own| 00000310 20 77 6f 72 6b 73 70 61 63 65 20 73 6f 20 79 6f | workspace so yo| 00000320 75 20 68 61 76 65 20 74 77 6f 20 6c 6f 74 73 20 |u have two lots | 00000330 69 6e 20 72 61 6d 20 28 4f 4b 20 73 6f 20 74 68 |in ram (OK so th| 00000340 65 20 73 65 63 6f 6e 64 20 63 6f 70 79 20 69 73 |e second copy is| 00000350 20 6c 6f 73 74 20 77 68 65 6e 20 74 68 65 20 61 | lost when the a| 00000360 70 70 6c 69 63 61 74 69 6f 6e 20 71 75 69 74 73 |pplication quits| 00000370 20 62 75 74 20 79 6f 75 20 63 61 6e 20 73 65 65 | but you can see| 00000380 20 6d 79 20 70 6f 69 6e 74 29 2e 0a 0a 45 6e 74 | my point)...Ent| 00000390 65 72 20 21 33 44 52 61 6d 46 72 65 65 2e 20 41 |er !3DRamFree. A| 000003a0 73 20 74 68 65 20 70 72 6f 67 72 61 6d 20 70 72 |s the program pr| 000003b0 6f 67 72 65 73 73 65 73 20 69 74 20 74 65 6c 6c |ogresses it tell| 000003c0 73 20 79 6f 75 20 77 68 61 74 20 69 73 20 68 61 |s you what is ha| 000003d0 70 70 65 6e 69 6e 67 20 61 6e 64 20 79 6f 75 20 |ppening and you | 000003e0 63 61 6e 20 73 61 76 65 20 74 68 69 73 20 73 63 |can save this sc| 000003f0 72 69 70 74 20 61 73 20 61 20 74 65 78 74 20 66 |ript as a text f| 00000400 69 6c 65 20 74 6f 20 65 78 61 6d 69 6e 65 2e 20 |ile to examine. | 00000410 54 68 69 73 20 70 72 6f 67 72 61 6d 20 63 6f 70 |This program cop| 00000420 69 65 73 20 74 68 65 20 6e 65 77 20 66 69 6c 65 |ies the new file| 00000430 73 20 69 6e 20 52 4f 4d 41 70 70 73 33 44 20 74 |s in ROMApps3D t| 00000440 6f 20 61 20 6e 65 77 20 64 69 72 65 63 74 6f 72 |o a new director| 00000450 79 20 63 61 6c 6c 65 64 20 54 65 6d 70 6c 61 74 |y called Templat| 00000460 65 73 20 69 6e 20 79 6f 75 72 20 21 53 79 73 74 |es in your !Syst| 00000470 65 6d 20 61 70 70 6c 69 63 61 74 69 6f 6e 2e 20 |em application. | 00000480 49 74 20 74 68 65 6e 20 61 6c 74 65 72 73 20 79 |It then alters y| 00000490 6f 75 72 20 21 42 6f 6f 74 20 66 69 6c 65 20 28 |our !Boot file (| 000004a0 70 75 74 74 69 6e 67 20 61 20 63 6f 70 79 20 6f |putting a copy o| 000004b0 66 20 74 68 65 20 6f 72 69 67 69 6e 61 6c 20 69 |f the original i| 000004c0 6e 20 74 68 65 20 6e 65 77 20 54 65 6d 70 6c 61 |n the new Templa| 000004d0 74 65 73 20 64 69 72 65 63 74 6f 72 79 20 66 6f |tes directory fo| 000004e0 72 20 73 61 66 65 20 6b 65 65 70 69 6e 67 29 20 |r safe keeping) | 000004f0 62 79 20 61 64 64 69 6e 67 20 70 61 74 68 73 20 |by adding paths | 00000500 74 6f 20 70 6f 69 6e 74 20 74 6f 20 74 68 65 20 |to point to the | 00000510 6e 65 77 20 6c 6f 63 61 74 69 6f 6e 2e 20 49 66 |new location. If| 00000520 20 79 6f 75 20 64 6f 20 6e 6f 74 20 68 61 76 65 | you do not have| 00000530 20 61 20 21 42 6f 6f 74 20 66 69 6c 65 20 69 74 | a !Boot file it| 00000540 20 77 69 6c 6c 20 63 72 65 61 74 65 20 6f 6e 65 | will create one| 00000550 2e 0a 46 6f 72 20 65 78 61 6d 70 6c 65 3a 0a 0a |..For example:..| 00000560 6e 6f 72 6d 61 6c 6c 79 20 20 46 69 6c 65 72 24 |normally Filer$| 00000570 50 61 74 68 20 77 6f 75 6c 64 20 70 6f 69 6e 74 |Path would point| 00000580 20 74 6f 20 22 52 65 73 6f 75 72 63 65 73 3a 24 | to "Resources:$| 00000590 2e 52 65 73 6f 75 72 63 65 73 2e 46 69 6c 65 72 |.Resources.Filer| 000005a0 2e 22 0a 61 6e 64 20 74 68 69 73 20 69 73 20 77 |.".and this is w| 000005b0 68 65 72 65 20 46 69 6c 65 72 20 77 6f 75 6c 64 |here Filer would| 000005c0 20 6c 6f 6f 6b 20 66 6f 72 20 61 6e 79 20 6f 66 | look for any of| 000005d0 20 69 74 73 20 72 65 73 6f 75 72 63 65 73 2e 20 | its resources. | 000005e0 54 68 69 73 20 69 73 20 73 65 74 20 75 70 20 62 |This is set up b| 000005f0 79 20 52 69 73 63 20 4f 53 20 33 20 77 68 65 6e |y Risc OS 3 when| 00000600 20 74 68 65 20 63 6f 6d 70 75 74 65 72 20 69 73 | the computer is| 00000610 20 73 77 69 74 63 68 65 64 20 6f 6e 20 6f 72 20 | switched on or | 00000620 72 65 73 65 74 2e 0a 0a 47 65 74 20 61 20 74 61 |reset...Get a ta| 00000630 73 6b 20 77 69 6e 64 6f 77 20 28 70 72 65 73 73 |sk window (press| 00000640 20 43 74 72 6c 20 46 31 32 29 20 61 6e 64 20 74 | Ctrl F12) and t| 00000650 79 70 65 3a 20 20 20 53 68 6f 77 20 46 69 6c 65 |ype: Show File| 00000660 72 24 50 61 74 68 0a 74 6f 20 73 65 65 20 74 68 |r$Path.to see th| 00000670 65 20 70 61 74 68 20 6f 6e 20 79 6f 75 72 20 63 |e path on your c| 00000680 6f 6d 70 75 74 65 72 2e 0a 0a 42 79 20 61 64 64 |omputer...By add| 00000690 69 6e 67 20 74 68 69 73 20 6e 65 78 74 20 6c 69 |ing this next li| 000006a0 6e 65 20 74 6f 20 74 68 65 20 21 42 6f 6f 74 20 |ne to the !Boot | 000006b0 66 69 6c 65 3a 0a 0a 53 65 74 20 46 69 6c 65 72 |file:..Set Filer| 000006c0 24 50 61 74 68 20 3c 53 79 73 74 65 6d 24 44 69 |$Path <System$Di| 000006d0 72 3e 2e 54 65 6d 70 6c 61 74 65 73 2e 46 69 6c |r>.Templates.Fil| 000006e0 65 72 2e 2c 3c 46 69 6c 65 72 24 50 61 74 68 3e |er.,<Filer$Path>| 000006f0 0a 0a 77 65 20 6d 61 6b 65 20 46 69 6c 65 72 20 |..we make Filer | 00000700 6c 6f 6f 6b 20 61 74 20 74 68 65 20 6e 65 77 20 |look at the new | 00000710 6c 6f 63 61 74 69 6f 6e 20 46 49 52 53 54 20 61 |location FIRST a| 00000720 6e 64 20 74 68 65 6e 20 61 74 20 74 68 65 20 6f |nd then at the o| 00000730 6c 64 20 6c 6f 63 61 74 69 6f 6e 20 73 65 63 6f |ld location seco| 00000740 6e 64 2e 20 54 68 69 73 20 77 61 79 20 77 65 20 |nd. This way we | 00000750 64 6f 6e 27 74 20 6e 65 65 64 20 74 6f 20 68 61 |don't need to ha| 00000760 76 65 20 61 6c 6c 20 6f 66 20 74 68 65 20 74 68 |ve all of the th| 00000770 65 20 61 70 70 6c 69 63 61 74 69 6f 6e 73 20 72 |e applications r| 00000780 65 73 6f 75 72 63 65 73 20 69 6e 20 74 68 65 20 |esources in the | 00000790 6e 65 77 20 64 69 72 65 63 74 6f 72 79 2c 20 6f |new directory, o| 000007a0 6e 6c 79 20 74 68 65 20 62 69 74 73 20 74 68 61 |nly the bits tha| 000007b0 74 20 6e 65 65 64 20 72 65 70 6c 61 63 69 6e 67 |t need replacing| 000007c0 2e 0a 0a 54 68 61 74 20 74 61 6b 65 73 20 63 61 |...That takes ca| 000007d0 72 65 20 6f 66 20 73 6f 6d 65 20 70 72 6f 67 72 |re of some progr| 000007e0 61 6d 73 20 62 75 74 20 6f 74 68 65 72 73 20 6c |ams but others l| 000007f0 69 6b 65 20 21 44 72 61 77 20 73 65 74 20 74 68 |ike !Draw set th| 00000800 65 69 72 20 70 61 74 68 73 20 77 68 65 6e 20 74 |eir paths when t| 00000810 68 65 79 20 61 72 65 20 6c 61 75 6e 63 68 65 64 |hey are launched| 00000820 2c 20 61 6e 64 20 74 68 65 20 21 52 75 6e 20 66 |, and the !Run f| 00000830 69 6c 65 73 20 74 68 61 74 20 64 6f 20 74 68 69 |iles that do thi| 00000840 73 20 61 72 65 20 69 6e 20 52 6f 6d 2e 20 4e 6f |s are in Rom. No| 00000850 74 20 65 61 73 79 20 74 6f 20 63 68 61 6e 67 65 |t easy to change| 00000860 2e 20 48 6f 77 65 76 65 72 20 77 65 20 63 61 6e |. However we can| 00000870 20 27 6f 76 65 72 77 72 69 74 65 27 20 74 68 65 | 'overwrite' the| 00000880 6d 20 28 6a 75 73 74 20 61 73 20 52 4f 4d 41 70 |m (just as ROMAp| 00000890 70 73 33 44 20 64 69 64 20 66 6f 72 20 74 68 65 |ps3D did for the| 000008a0 20 6f 74 68 65 72 20 66 69 6c 65 73 29 20 61 6e | other files) an| 000008b0 64 20 74 68 69 73 20 69 73 20 77 68 61 74 20 74 |d this is what t| 000008c0 68 65 20 6d 6f 64 75 6c 65 20 41 70 70 73 33 44 |he module Apps3D| 000008d0 6d 6f 64 73 20 64 6f 65 73 20 28 63 72 65 61 74 |mods does (creat| 000008e0 65 64 20 62 79 20 52 65 67 69 73 74 65 72 2c 20 |ed by Register, | 000008f0 41 63 6f 72 6e 20 55 73 65 72 20 4e 6f 76 65 6d |Acorn User Novem| 00000900 62 65 72 20 31 39 39 32 29 2e 0a 0a 21 41 6c 61 |ber 1992)...!Ala| 00000910 72 6d 2c 20 21 43 61 6c 63 2c 20 21 43 6f 6e 66 |rm, !Calc, !Conf| 00000920 69 67 75 72 65 2c 20 21 44 72 61 77 2c 20 21 45 |igure, !Draw, !E| 00000930 64 69 74 20 21 48 65 6c 70 2c 20 21 50 61 69 6e |dit !Help, !Pain| 00000940 74 2e 0a 0a 41 6c 6c 20 74 68 65 20 21 52 75 6e |t...All the !Run| 00000950 20 66 69 6c 65 73 20 69 6e 20 74 68 65 73 65 20 | files in these | 00000960 61 70 70 6c 69 63 61 74 69 6f 6e 73 20 68 61 76 |applications hav| 00000970 65 20 68 61 64 20 74 68 65 69 72 20 50 61 74 68 |e had their Path| 00000980 73 20 27 61 64 64 65 64 20 74 6f 27 20 61 6e 64 |s 'added to' and| 00000990 20 6c 6f 6f 6b 20 76 65 72 79 20 6d 75 63 68 20 | look very much | 000009a0 74 68 65 20 73 61 6d 65 20 61 73 20 74 68 65 79 |the same as they| 000009b0 20 77 65 72 65 3b 20 65 78 63 65 70 74 20 66 6f | were; except fo| 000009c0 72 20 21 41 6c 61 72 6d 20 77 68 69 63 68 20 49 |r !Alarm which I| 000009d0 27 76 65 20 63 68 61 6e 67 65 64 20 73 6c 69 67 |'ve changed slig| 000009e0 68 74 6c 79 20 74 6f 20 73 74 6f 70 20 69 74 20 |htly to stop it | 000009f0 63 6f 6d 70 6c 61 69 6e 69 6e 67 20 77 68 65 6e |complaining when| 00000a00 20 79 6f 75 20 74 72 79 20 74 6f 20 72 75 6e 20 | you try to run | 00000a10 74 77 6f 20 63 6f 70 69 65 73 2e 20 49 74 20 63 |two copies. It c| 00000a20 68 65 63 6b 73 20 74 6f 20 73 65 65 20 69 66 20 |hecks to see if | 00000a30 21 41 6c 61 72 6d 20 69 73 20 72 75 6e 6e 69 6e |!Alarm is runnin| 00000a40 67 20 61 6e 64 20 69 66 20 69 74 20 69 73 2c 20 |g and if it is, | 00000a50 69 74 20 73 74 6f 70 73 2e 20 54 68 61 74 20 73 |it stops. That s| 00000a60 69 6d 70 6c 65 2e 0a 0a 41 70 70 73 33 44 6d 6f |imple...Apps3Dmo| 00000a70 64 73 20 69 73 20 6a 75 73 74 20 75 6e 64 65 72 |ds is just under| 00000a80 20 34 6b 20 6c 6f 6e 67 20 73 6f 20 79 6f 75 20 | 4k long so you | 00000a90 61 72 65 20 65 66 66 65 63 74 69 76 65 6c 79 20 |are effectively | 00000aa0 63 6c 61 69 6d 69 6e 67 20 62 61 63 6b 20 38 34 |claiming back 84| 00000ab0 6b 20 6f 66 20 72 61 6d 2c 20 66 72 65 65 2e 0a |k of ram, free..| 00000ac0 0a 0a 50 72 6f 67 72 61 6d 20 72 65 71 75 69 72 |..Program requir| 00000ad0 65 6d 65 6e 74 73 3a 0a 0a 41 63 6f 72 6e 27 73 |ements:..Acorn's| 00000ae0 20 6d 6f 64 75 6c 65 20 52 4f 4d 41 70 70 73 33 | module ROMApps3| 00000af0 44 20 28 66 69 6c 65 6e 61 6d 65 20 52 4f 4d 41 |D (filename ROMA| 00000b00 70 70 73 33 44 29 20 73 68 6f 75 6c 64 20 62 65 |pps3D) should be| 00000b10 20 6c 6f 61 64 65 64 20 62 65 66 6f 72 65 20 72 | loaded before r| 00000b20 75 6e 6e 69 6e 67 20 21 33 44 52 61 6d 46 72 65 |unning !3DRamFre| 00000b30 65 20 61 6e 64 20 79 6f 75 20 77 69 6c 6c 20 62 |e and you will b| 00000b40 65 20 77 61 72 6e 65 64 20 69 66 20 69 74 20 69 |e warned if it i| 00000b50 73 6e 27 74 2e 20 54 68 65 72 65 61 66 74 65 72 |sn't. Thereafter| 00000b60 20 69 74 20 77 69 6c 6c 20 6e 6f 74 20 62 65 20 | it will not be | 00000b70 6e 65 65 64 65 64 2e 0a 0a 41 63 6f 72 6e 27 73 |needed...Acorn's| 00000b80 20 6d 6f 64 75 6c 65 20 42 6f 72 64 65 72 55 74 | module BorderUt| 00000b90 69 6c 73 20 28 66 69 6c 65 6e 61 6d 65 20 42 6f |ils (filename Bo| 00000ba0 72 64 65 72 55 74 69 6c 29 20 73 68 6f 75 6c 64 |rderUtil) should| 00000bb0 20 62 65 20 6c 6f 61 64 65 64 20 62 65 66 6f 72 | be loaded befor| 00000bc0 65 20 72 75 6e 6e 69 6e 67 20 21 33 44 52 61 6d |e running !3DRam| 00000bd0 46 72 65 65 20 61 6e 64 20 79 6f 75 20 77 69 6c |Free and you wil| 00000be0 6c 20 62 65 20 77 61 72 6e 65 64 20 69 66 20 69 |l be warned if i| 00000bf0 74 20 69 73 6e 27 74 2e 20 49 74 20 77 69 6c 6c |t isn't. It will| 00000c00 20 61 6c 77 61 79 73 20 62 65 20 6e 65 65 64 65 | always be neede| 00000c10 64 20 61 6e 64 20 73 68 6f 75 6c 64 20 62 65 20 |d and should be | 00000c20 63 6f 70 69 65 64 20 74 6f 20 27 3c 53 79 73 74 |copied to '<Syst| 00000c30 65 6d 24 44 69 72 2e 4d 6f 64 75 6c 65 73 27 20 |em$Dir.Modules' | 00000c40 61 73 20 74 68 69 73 20 70 61 74 68 20 77 69 6c |as this path wil| 00000c50 6c 20 62 65 20 69 6e 20 74 68 65 20 6e 65 77 20 |l be in the new | 00000c60 21 42 6f 6f 74 20 66 69 6c 65 20 69 66 20 69 74 |!Boot file if it| 00000c70 20 69 73 6e 27 74 20 61 6c 72 65 61 64 79 20 70 | isn't already p| 00000c80 72 65 73 65 6e 74 2e 0a 0a 42 6f 74 68 20 74 68 |resent...Both th| 00000c90 65 73 65 20 6d 6f 64 75 6c 65 73 20 61 72 65 20 |ese modules are | 00000ca0 69 6e 73 69 64 65 20 41 63 6f 72 6e 27 73 20 21 |inside Acorn's !| 00000cb0 4e 65 77 4c 6f 6f 6b 20 61 6e 64 20 63 61 6e 20 |NewLook and can | 00000cc0 62 65 20 66 6f 75 6e 64 20 62 79 20 73 68 69 66 |be found by shif| 00000cd0 74 2d 64 6f 75 62 6c 65 20 63 6c 69 63 6b 69 6e |t-double clickin| 00000ce0 67 20 6f 6e 20 21 4e 65 77 4c 6f 6f 6b 20 74 6f |g on !NewLook to| 00000cf0 20 6f 70 65 6e 20 74 68 65 20 61 70 70 6c 69 63 | open the applic| 00000d00 61 74 69 6f 6e 20 64 69 72 65 63 74 6f 72 79 2e |ation directory.| 00000d10 20 49 66 20 79 6f 75 20 61 72 65 20 61 6c 72 65 | If you are alre| 00000d20 61 64 79 20 6c 6f 61 64 69 6e 67 20 74 68 65 6d |ady loading them| 00000d30 20 66 72 6f 6d 20 79 6f 75 72 20 65 78 69 73 74 | from your exist| 00000d40 69 6e 67 20 21 42 6f 6f 74 20 66 69 6c 65 20 74 |ing !Boot file t| 00000d50 68 65 6e 20 74 68 65 20 52 4f 4d 41 70 70 73 33 |hen the ROMApps3| 00000d60 44 20 65 78 65 63 75 74 69 6f 6e 20 6c 69 6e 65 |D execution line| 00000d70 20 77 69 6c 6c 20 62 65 20 72 65 6d 6f 76 65 64 | will be removed| 00000d80 20 61 6e 64 20 74 68 65 20 42 6f 72 64 65 72 55 | and the BorderU| 00000d90 74 69 6c 20 65 78 65 63 75 74 69 6f 6e 20 6c 69 |til execution li| 00000da0 6e 65 20 77 69 6c 6c 20 62 65 20 61 63 6b 6e 6f |ne will be ackno| 00000db0 77 6c 65 64 67 65 64 2e 20 54 68 65 20 65 78 61 |wledged. The exa| 00000dc0 63 74 20 41 63 6f 72 6e 20 73 70 65 6c 6c 69 6e |ct Acorn spellin| 00000dd0 67 20 69 73 20 69 6d 70 6f 72 74 61 6e 74 20 61 |g is important a| 00000de0 73 20 77 65 6c 6c 20 61 73 20 63 68 61 72 61 63 |s well as charac| 00000df0 74 65 72 20 63 61 73 65 20 66 6f 72 20 74 68 65 |ter case for the| 00000e00 20 6d 6f 64 75 6c 65 73 20 74 6f 20 62 65 20 73 | modules to be s| 00000e10 70 6f 74 74 65 64 2e 0a 0a 54 68 65 20 21 53 79 |potted...The !Sy| 00000e20 73 74 65 6d 20 61 70 70 6c 69 63 61 74 69 6f 6e |stem application| 00000e30 20 6d 75 73 74 20 68 61 76 65 20 62 65 65 6e 20 | must have been | 00000e40 73 65 65 6e 20 62 79 20 46 69 6c 65 72 20 61 6e |seen by Filer an| 00000e50 64 20 69 73 20 61 73 73 75 6d 65 64 20 28 6e 6f |d is assumed (no| 00000e60 74 20 75 6e 72 65 61 73 6f 6e 61 62 6c 79 29 20 |t unreasonably) | 00000e70 74 6f 20 62 65 20 6f 6e 20 74 68 65 20 66 69 6c |to be on the fil| 00000e80 69 6e 67 20 73 79 73 74 65 6d 20 74 68 61 74 20 |ing system that | 00000e90 77 69 6c 6c 20 62 65 20 62 6f 6f 74 65 64 2e 20 |will be booted. | 00000ea0 54 68 65 20 6e 65 77 20 54 65 6d 70 6c 61 74 65 |The new Template| 00000eb0 73 20 64 69 72 65 63 74 6f 72 79 20 77 69 6c 6c |s directory will| 00000ec0 20 62 65 20 63 72 65 61 74 65 64 20 68 65 72 65 | be created here| 00000ed0 20 61 6e 64 20 69 74 20 77 6f 75 6c 64 20 62 65 | and it would be| 00000ee0 20 61 20 67 6f 6f 64 20 69 64 65 61 20 74 6f 20 | a good idea to | 00000ef0 6c 6f 63 6b 20 74 68 65 20 63 6f 6e 74 65 6e 74 |lock the content| 00000f00 73 20 6f 66 20 74 68 69 73 20 64 69 72 65 63 74 |s of this direct| 00000f10 6f 72 79 20 74 6f 20 70 72 65 76 65 6e 74 20 61 |ory to prevent a| 00000f20 63 63 69 64 65 6e 74 61 6c 20 64 65 6c 65 74 69 |ccidental deleti| 00000f30 6f 6e 2c 20 64 65 70 65 6e 64 69 6e 67 20 6f 6e |on, depending on| 00000f40 20 68 6f 77 20 6c 69 6b 65 6c 79 20 74 68 69 73 | how likely this| 00000f50 20 69 73 20 74 6f 20 68 61 70 70 65 6e 2c 20 74 | is to happen, t| 00000f60 68 65 20 63 68 6f 69 63 65 20 69 73 20 79 6f 75 |he choice is you| 00000f70 72 73 2e 0a 0a 49 66 20 79 6f 75 20 64 6f 20 6e |rs...If you do n| 00000f80 6f 74 20 68 61 76 65 20 61 20 21 42 6f 6f 74 20 |ot have a !Boot | 00000f90 66 69 6c 65 20 74 68 65 6e 20 21 33 44 52 61 6d |file then !3DRam| 00000fa0 46 72 65 65 20 77 69 6c 6c 20 63 72 65 61 74 65 |Free will create| 00000fb0 20 6f 6e 65 20 61 6e 64 20 73 65 74 20 65 76 65 | one and set eve| 00000fc0 72 79 74 68 69 6e 67 20 75 70 20 66 6f 72 20 69 |rything up for i| 00000fd0 74 20 74 6f 20 62 65 20 69 6d 70 6c 65 6d 65 6e |t to be implemen| 00000fe0 74 65 64 2e 20 54 68 65 20 6e 65 77 20 21 42 6f |ted. The new !Bo| 00000ff0 6f 74 20 66 69 6c 65 20 77 69 6c 6c 20 62 65 20 |ot file will be | 00001000 74 79 70 65 64 20 61 73 20 61 20 44 65 73 6b 54 |typed as a DeskT| 00001010 6f 70 20 66 69 6c 65 20 61 6e 64 20 77 69 6c 6c |op file and will| 00001020 20 62 65 20 65 78 65 63 75 74 65 64 20 75 73 69 | be executed usi| 00001030 6e 67 20 2a 4f 70 74 20 34 2c 33 2e 0a 0a 49 66 |ng *Opt 4,3...If| 00001040 20 79 6f 75 20 64 6f 20 68 61 76 65 20 61 20 21 | you do have a !| 00001050 42 6f 6f 74 20 66 69 6c 65 20 74 68 65 6e 20 69 |Boot file then i| 00001060 74 20 77 69 6c 6c 20 62 65 20 61 64 64 65 64 20 |t will be added | 00001070 74 6f 20 74 68 65 20 65 6e 64 20 6f 66 20 74 68 |to the end of th| 00001080 65 20 6e 65 77 20 6f 6e 65 2c 20 74 6f 20 6d 61 |e new one, to ma| 00001090 69 6e 74 61 69 6e 20 74 68 65 20 6c 61 73 74 20 |intain the last | 000010a0 6c 69 6e 65 20 77 68 69 63 68 20 73 68 6f 75 6c |line which shoul| 000010b0 64 20 62 65 20 2a 44 65 73 6b 54 6f 70 20 28 70 |d be *DeskTop (p| 000010c0 6c 75 73 20 61 6e 79 20 6f 70 74 69 6f 6e 73 29 |lus any options)| 000010d0 2c 20 61 6e 64 20 79 6f 75 72 20 66 69 6c 65 20 |, and your file | 000010e0 74 79 70 65 20 61 6e 64 20 2a 4f 70 74 34 2c 6e |type and *Opt4,n| 000010f0 20 73 65 74 74 69 6e 67 73 20 75 73 65 64 2e 20 | settings used. | 00001100 49 66 20 79 6f 75 20 61 72 65 20 75 73 69 6e 67 |If you are using| 00001110 20 2a 4f 70 74 34 2c 32 20 74 6f 20 72 75 6e 20 | *Opt4,2 to run | 00001120 61 20 21 42 6f 6f 74 20 66 69 6c 65 20 6f 74 68 |a !Boot file oth| 00001130 65 72 20 74 68 61 6e 20 44 65 73 6b 54 6f 70 2c |er than DeskTop,| 00001140 20 4f 62 65 79 20 6f 72 20 43 6f 6d 6d 61 6e 64 | Obey or Command| 00001150 20 74 79 70 65 73 20 74 68 65 6e 20 69 74 20 77 | types then it w| 00001160 69 6c 6c 20 62 65 20 61 73 73 75 6d 65 64 20 74 |ill be assumed t| 00001170 6f 20 62 65 20 61 20 6d 61 63 68 69 6e 65 20 63 |o be a machine c| 00001180 6f 64 65 20 70 72 6f 67 72 61 6d 20 61 6e 64 20 |ode program and | 00001190 73 74 6f 70 20 74 68 65 72 65 20 61 6e 64 20 74 |stop there and t| 000011a0 68 65 6e 2c 20 6e 6f 74 20 64 6f 69 6e 67 20 61 |hen, not doing a| 000011b0 6e 79 74 68 69 6e 67 2e 0a 0a 49 66 20 79 6f 75 |nything...If you| 000011c0 72 20 21 42 6f 6f 74 20 66 69 6c 65 20 69 73 20 |r !Boot file is | 000011d0 61 6e 20 61 70 70 6c 69 63 61 74 69 6f 6e 20 64 |an application d| 000011e0 69 72 65 63 74 6f 72 79 2c 20 52 69 73 63 50 43 |irectory, RiscPC| 000011f0 20 73 74 79 6c 65 2c 20 74 68 65 6e 20 69 74 20 | style, then it | 00001200 77 69 6c 6c 20 62 65 20 61 73 73 75 6d 65 64 20 |will be assumed | 00001210 74 6f 20 62 65 20 6f 6e 20 61 20 52 69 73 63 50 |to be on a RiscP| 00001220 63 20 61 6e 64 20 61 67 61 69 6e 20 73 74 6f 70 |c and again stop| 00001230 20 74 68 65 72 65 20 61 6e 64 20 74 68 65 6e 2c | there and then,| 00001240 20 6e 6f 74 20 64 6f 69 6e 67 20 61 6e 79 74 68 | not doing anyth| 00001250 69 6e 67 2e 20 54 68 69 73 20 69 73 20 62 65 63 |ing. This is bec| 00001260 61 75 73 65 20 79 6f 75 20 77 69 6c 6c 20 61 6c |ause you will al| 00001270 72 65 61 64 79 20 68 61 76 65 20 74 68 65 20 62 |ready have the b| 00001280 65 6e 65 66 69 74 73 20 74 68 69 73 20 70 72 6f |enefits this pro| 00001290 67 72 61 6d 20 6f 66 66 65 72 73 20 62 75 69 6c |gram offers buil| 000012a0 74 20 69 6e 20 74 6f 20 79 6f 75 72 20 63 6f 6d |t in to your com| 000012b0 70 75 74 65 72 2e 20 49 66 20 69 74 20 69 73 6e |puter. If it isn| 000012c0 27 74 20 61 20 52 69 73 63 50 63 20 74 68 65 6e |'t a RiscPc then| 000012d0 20 79 6f 75 20 6d 75 73 74 20 68 61 76 65 20 61 | you must have a| 000012e0 6c 74 65 72 65 64 20 79 6f 75 72 20 21 42 6f 6f |ltered your !Boo| 000012f0 74 20 66 69 6c 65 20 74 6f 20 6c 6f 6f 6b 20 6c |t file to look l| 00001300 69 6b 65 20 6f 6e 65 20 61 6e 64 20 6d 75 73 74 |ike one and must| 00001310 20 72 65 76 65 72 74 20 62 61 63 6b 20 74 6f 20 | revert back to | 00001320 61 20 73 74 61 6e 64 61 72 64 20 73 65 74 20 75 |a standard set u| 00001330 70 20 66 6f 72 20 74 68 65 20 63 68 61 6e 67 65 |p for the change| 00001340 73 20 74 6f 20 62 65 20 6d 61 64 65 20 61 6e 64 |s to be made and| 00001350 20 74 68 65 6e 20 72 65 63 72 65 61 74 65 20 79 | then recreate y| 00001360 6f 75 72 20 21 42 6f 6f 74 20 61 70 70 6c 69 63 |our !Boot applic| 00001370 61 74 69 6f 6e 20 64 69 72 65 63 74 6f 72 79 20 |ation directory | 00001380 61 73 20 69 74 20 77 61 73 2e 0a 20 20 20 20 20 |as it was.. | 00001390 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | * 000013c0 20 20 20 0a 55 73 69 6e 67 20 64 69 73 63 20 62 | .Using disc b| 000013d0 61 73 65 64 20 74 65 6d 70 6c 61 74 65 73 20 69 |ased templates i| 000013e0 73 20 62 65 73 74 20 73 75 69 74 65 64 20 74 6f |s best suited to| 000013f0 20 61 20 68 61 72 64 20 64 69 73 63 20 62 75 74 | a hard disc but| 00001400 20 77 69 6c 6c 20 77 6f 72 6b 20 6f 6e 20 66 6c | will work on fl| 00001410 6f 70 70 79 20 73 79 73 74 65 6d 73 2e 20 49 6e |oppy systems. In| 00001420 64 65 65 64 20 66 6f 72 20 61 6e 20 65 61 73 79 |deed for an easy| 00001430 20 64 65 6d 6f 6e 73 74 72 61 74 69 6f 6e 20 6f | demonstration o| 00001440 66 20 77 68 61 74 20 77 69 6c 6c 20 68 61 70 70 |f what will happ| 00001450 65 6e 20 79 6f 75 20 63 6f 75 6c 64 20 63 6f 70 |en you could cop| 00001460 79 20 79 6f 75 72 20 21 53 79 73 74 65 6d 20 64 |y your !System d| 00001470 69 72 65 63 74 6f 72 79 20 74 6f 20 61 20 66 6c |irectory to a fl| 00001480 6f 70 70 79 20 64 69 73 63 2e 20 44 6f 75 62 6c |oppy disc. Doubl| 00001490 65 20 63 6c 69 63 6b 20 6f 6e 20 69 74 20 74 6f |e click on it to| 000014a0 20 72 65 73 65 74 20 69 74 73 20 70 61 74 68 73 | reset its paths| 000014b0 2e 20 43 6f 70 79 20 79 6f 75 72 20 21 42 6f 6f |. Copy your !Boo| 000014c0 74 20 66 69 6c 65 20 74 6f 20 74 68 65 20 66 6c |t file to the fl| 000014d0 6f 70 70 79 20 61 6e 64 20 74 68 65 6e 20 64 6f |oppy and then do| 000014e0 75 62 6c 65 20 63 6c 69 63 6b 20 6f 6e 20 21 33 |uble click on !3| 000014f0 44 52 61 6d 46 72 65 65 2e 20 59 6f 75 20 63 61 |DRamFree. You ca| 00001500 6e 20 74 68 65 6e 20 65 78 61 6d 69 6e 65 20 74 |n then examine t| 00001510 68 65 20 21 42 6f 6f 74 20 66 69 6c 65 20 61 6e |he !Boot file an| 00001520 64 20 21 53 79 73 74 65 6d 20 64 69 72 65 63 74 |d !System direct| 00001530 6f 72 79 20 66 6f 72 20 74 68 65 20 63 68 61 6e |ory for the chan| 00001540 67 65 73 20 74 68 61 74 20 77 69 6c 6c 20 68 61 |ges that will ha| 00001550 76 65 20 62 65 65 6e 20 63 61 72 72 69 65 64 20 |ve been carried | 00001560 6f 75 74 2e 0a 0a 54 68 65 20 6e 65 77 20 6d 6f |out...The new mo| 00001570 64 75 6c 65 20 41 70 70 73 33 44 6d 6f 64 73 20 |dule Apps3Dmods | 00001580 69 73 20 63 68 65 63 6b 65 64 20 66 6f 72 20 77 |is checked for w| 00001590 68 65 6e 20 21 33 44 52 61 6d 46 72 65 65 20 73 |hen !3DRamFree s| 000015a0 74 61 72 74 73 20 75 70 20 61 6e 64 20 69 66 20 |tarts up and if | 000015b0 66 6f 75 6e 64 20 61 6e 20 65 72 72 6f 72 20 77 |found an error w| 000015c0 69 6c 6c 20 62 65 20 67 65 6e 65 72 61 74 65 64 |ill be generated| 000015d0 2e 20 54 68 69 73 20 69 73 20 74 6f 20 70 72 65 |. This is to pre| 000015e0 76 65 6e 74 20 74 68 65 20 21 42 6f 6f 74 20 66 |vent the !Boot f| 000015f0 69 6c 65 20 66 72 6f 6d 20 62 65 69 6e 67 20 61 |ile from being a| 00001600 6c 74 65 72 65 64 20 6d 6f 72 65 20 74 68 61 6e |ltered more than| 00001610 20 6f 6e 63 65 2c 20 77 68 69 63 68 20 77 6f 75 | once, which wou| 00001620 6c 64 20 62 65 20 61 20 77 61 73 74 65 20 6f 66 |ld be a waste of| 00001630 20 74 69 6d 65 2e 20 4f 66 20 63 6f 75 72 73 65 | time. Of course| 00001640 20 79 6f 75 20 63 61 6e 20 61 6c 77 61 79 73 20 | you can always | 00001650 2a 52 4d 4b 69 6c 6c 20 41 70 70 73 33 44 6d 6f |*RMKill Apps3Dmo| 00001660 64 73 20 74 6f 20 61 6c 6c 6f 77 20 21 33 44 72 |ds to allow !3Dr| 00001670 61 6d 46 72 65 65 20 74 6f 20 72 75 6e 20 61 67 |amFree to run ag| 00001680 61 69 6e 20 62 75 74 20 79 6f 75 20 68 61 76 65 |ain but you have| 00001690 20 62 65 65 6e 20 77 61 72 6e 65 64 2e 20 49 66 | been warned. If| 000016a0 2c 20 62 79 20 73 6f 6d 65 20 62 69 7a 61 72 72 |, by some bizarr| 000016b0 65 20 63 6f 69 6e 63 69 64 65 6e 63 65 2c 20 79 |e coincidence, y| 000016c0 6f 75 20 61 6c 72 65 61 64 79 20 68 61 76 65 20 |ou already have | 000016d0 61 20 6d 6f 64 75 6c 65 20 63 61 6c 6c 65 64 20 |a module called | 000016e0 41 70 70 73 33 44 6d 6f 64 73 20 74 68 65 6e 20 |Apps3Dmods then | 000016f0 79 6f 75 20 63 6f 75 6c 64 20 6c 6f 61 64 20 6d |you could load m| 00001700 79 20 6d 6f 64 75 6c 65 20 69 6e 74 6f 20 21 45 |y module into !E| 00001710 64 69 74 20 75 73 69 6e 67 20 73 68 69 66 74 2d |dit using shift-| 00001720 64 6f 75 62 6c 65 2d 63 6c 69 63 6b 20 61 6e 64 |double-click and| 00001730 20 61 6c 74 65 72 20 69 74 73 20 6e 61 6d 65 2c | alter its name,| 00001740 20 63 68 61 72 61 63 74 65 72 20 66 6f 72 20 63 | character for c| 00001750 68 61 72 61 63 74 65 72 2c 20 65 6e 73 75 72 69 |haracter, ensuri| 00001760 6e 67 20 74 68 65 20 6e 61 6d 65 20 6c 65 6e 67 |ng the name leng| 00001770 74 68 20 64 6f 65 73 20 6e 6f 74 20 63 68 61 6e |th does not chan| 00001780 67 65 20 28 6f 76 65 72 77 72 69 74 65 20 69 73 |ge (overwrite is| 00001790 20 62 65 73 74 20 66 6f 72 20 74 68 69 73 29 2e | best for this).| 000017a0 20 59 6f 75 20 77 6f 75 6c 64 20 74 68 65 6e 20 | You would then | 000017b0 68 61 76 65 20 74 6f 20 61 6c 74 65 72 20 74 68 |have to alter th| 000017c0 65 20 21 52 75 6e 20 26 20 6d 61 69 6e 20 21 42 |e !Run & main !B| 000017d0 6f 6f 74 20 66 69 6c 65 73 20 74 6f 20 73 75 69 |oot files to sui| 000017e0 74 20 74 6f 20 63 6f 6d 70 6c 65 74 65 20 79 6f |t to complete yo| 000017f0 75 72 20 6d 6f 64 73 2e 0a 0a 54 68 65 20 70 72 |ur mods...The pr| 00001800 6f 67 72 61 6d 20 69 74 73 65 6c 66 20 6d 75 6c |ogram itself mul| 00001810 74 69 74 61 73 6b 73 20 69 6e 20 61 20 54 61 73 |titasks in a Tas| 00001820 6b 57 69 6e 64 6f 77 20 6f 62 74 61 69 6e 65 64 |kWindow obtained| 00001830 20 69 6e 20 74 68 65 20 21 52 75 6e 20 66 69 6c | in the !Run fil| 00001840 65 20 62 79 20 74 68 65 20 63 6f 6d 6d 61 6e 64 |e by the command| 00001850 20 27 2a 54 61 73 6b 57 69 6e 64 6f 77 20 52 75 | '*TaskWindow Ru| 00001860 6e 22 3c 33 44 52 61 6d 46 72 65 65 24 44 69 72 |n"<3DRamFree$Dir| 00001870 3e 2e 21 52 75 6e 49 6d 61 67 65 22 20 2d 77 69 |>.!RunImage" -wi| 00001880 6d 70 73 6c 6f 74 20 31 32 38 6b 20 2d 6e 61 6d |mpslot 128k -nam| 00001890 65 20 33 44 52 61 6d 46 72 65 65 20 2d 64 69 73 |e 3DRamFree -dis| 000018a0 70 6c 61 79 20 2d 71 75 69 74 27 20 61 6e 64 20 |play -quit' and | 000018b0 69 73 20 73 75 69 74 65 64 20 74 6f 20 73 75 63 |is suited to suc| 000018c0 68 20 74 65 78 74 20 62 61 73 65 64 20 70 72 6f |h text based pro| 000018d0 67 72 61 6d 73 2e 20 21 45 64 69 74 20 69 73 20 |grams. !Edit is | 000018e0 74 68 65 20 27 6f 77 6e 65 72 27 20 6f 66 20 74 |the 'owner' of t| 000018f0 68 65 20 54 61 73 6b 57 69 6e 64 6f 77 20 73 6f |he TaskWindow so| 00001900 20 64 6f 6e 27 74 20 62 65 20 73 75 72 70 72 69 | don't be surpri| 00001910 73 65 64 20 69 66 20 79 6f 75 20 73 65 65 20 69 |sed if you see i| 00001920 74 20 6f 6e 20 74 68 65 20 69 63 6f 6e 20 62 61 |t on the icon ba| 00001930 72 2e 0a 0a 0a 0a 0a |r......| 00001937