Home » Personal collection » Acorn ADFS disks » Electron_User_Group » EUG_40.ADF » P/+man1
P/+man1
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 » Personal collection » Acorn ADFS disks » Electron_User_Group » EUG_40.ADF |
Filename: | P/+man1 |
Read OK: | ✔ |
File size: | 140A bytes |
Load address: | 2B206576 |
Exec address: | 316E616D |
Duplicates
There is 1 duplicate copy of this file in the archive:
- Personal collection » Acorn ADFS disks » Electron_User_Group » EUG_40.ADF » P/+man1
- Personal collection » Acorn hard disk » zipped_disks » elk03 » eug40/P/+man1
File contents
MANUAL FOR PRETTYPRINT (6502 ROM image) This file describes the ROM image PRETTYPRINT which adds 'OS_PrettyPrint' support to the BBC in an identical manner to that supplied on Risc OS based machines. The manual is (C)1998 SPROW and software is (C)1997 SPROW INSTRUCTIONS -At any command line prompt,eg.the BASIC command prompt '>' type ON A MASTER: *SRLOAD DRDIR 8000 <socket#> *INSERT <socket#> where <socket#> may be 7,6,5,4 ON A MACHINE WITH SWRAM: *LOAD DRDIR 8000 and press CTRL-BREAK to initialise. The image will then be installed into the chosen socket where it will wait for the user to issue one of the following two stimuli OSWORD CALL-A =&47 and X&Y point to a control block in memory XY+00 4 byte pointer to null terminated string to print (low byte first) XY+04 4 byte pointer to user dictionary,or 0 to use built in dictionary (low byte first) XY+08 4 byte pointer to null terminated 'special string' (low byte first) XY+12 Source of string to print,00=RAM 128 + socket=ROM XY+13 Source of user dictionary,00=RAM 128+socket=ROM if XY+04 is non zero XY+14 Source of 'special string',00=RAM 128+socket=ROM COMMAND LINE- *HELP "filename" where "filename" contains a valid wadge of text and starts with a 15 byte block as though it had been entered as an OSWord. To make a file that is suitable for use in this manner is really easy. You just take your prettyprint text and then put the 15 byte OSWord block at the beginning of the file. Because the OSWord block needs addresses putting in it, you'll need to specify a SENSIBLE load address in the file's catalogue entry. EXIT MESSAGES -Missing " - the command line had a closing ditto missing Dictionary entry not found - an escape sequence number was out of range Load address too low - the file specified on the command line loaded in at a silly place in the memory map File not found - the file specified on the command line doesn't exist Tube hardware not found - the OSWord block specified data to come form the tube KNOWN PROBLEMS/FUTURE ENHANCEMENTS -No known problems Text doesn't word wrap yet HISTORY-V0.90 First release version,to the EUG disk user group along with an article on word wrapping text WHAT PRETTY PRINT IS -Pretty print writes a string pointed to by an osword control block,in additionthere are some special properties that it looks out for though: * A carriage return causes a newline to be generated * TAB causes a tabulation to the next multiple of eight chars * Word wraps, unless the words are separated by CHR$31 (used as a hard space) * ESC (ASCII 27) indicates that a dictionary entry should be substituted To use a dictionary entry, place a CHR$ 27 followed by an entry number to look up in the range 1-255 (the entry '0' is used to look up the 'special string' pointed to by XY+8). There is a default dictionary, which doesn't contain all 255 entries, but you may of course specify your own 'User dictionary' if the application you have in mind uses a lot of the same strings. eg. a chemistry related program. Effectively this will result in text being compacted since whole words are replaced by just two bytes. DICTIONARY FORMAT - Dictionary entries may recursively refer to other dictionary entries,nested no deeper than 32 levels (otherwise the stack overflows). The first byte of theentry points to the next entry,then there's text terminated by a 0 byte.So fora file of N strings: <offsettostartofstringTWO><1STstring$of255chr$orless><00> <offsettostartofstringTHREE><2NDstring$of255chr$orless><00> : : : : : : <offsettostartofstring(N-1)><(N-1)THstring$of255chr$orless><00> <00><NTHstring$of255chr$orless><00> DEFAULT DICTIONARY -00=><string pointed to by XY+8> 01=>"Syntax: *"+<string pointed to by XY+8> 02=>" the " 03=>"director" 04=>"filing system" 05=>"current" 06=>" to a variable. Other types of values can be assigned with *" 07=>"file" 08=>"default " 09=>"tion" 10=>"*Configure" 11=>"name" 12=>" server" 13=>"number" 14=>"Syntax: *"+<string pointed to by XY+8>+ " <" 15=>" one or more files that match the given wildcard" 16=>" and" 17=>"relocatable module" 18=>CR+"C(onfirm)"+TAB+"Prompt for conf irmation of each" 19=>"sets the" 20=>Syntax: *"+<string pointed to by XY+8>+" [<disc spec.>]" 21=>")"+CR+"V(erbose)"+TAB+"Print informa tion on each file" 22=>"spriteLandscape [<XScale> [<YScale> [<Margin>[<Threshold>]]]]]" 23=>"is used to print a hard copy of the screen on EPSON-" 24=>"."+CR+"Options: (use ~ to force off, eg.~" 25=>"printe" 26=>"Syntax: *"+<string pointed to by XY+8>+" <filename>" 27=>"select" 28=>"xpression" 29=>Syntax: *"+<string pointed to by XY+8>+"[" 30=>"sprite" 31=>" displays" 32=>"free space" 33=>" {off}" 34=>"library" 35=>"parameter" 36=>"object" 37=>" all " 38=>"disc" 39=>" to " 40=>" is "
00000000 0d 4d 41 4e 55 41 4c 20 46 4f 52 20 50 52 45 54 |.MANUAL FOR PRET| 00000010 54 59 50 52 49 4e 54 20 28 36 35 30 32 20 52 4f |TYPRINT (6502 RO| 00000020 4d 20 69 6d 61 67 65 29 0d 54 68 69 73 20 66 69 |M image).This fi| 00000030 6c 65 20 64 65 73 63 72 69 62 65 73 20 74 68 65 |le describes the| 00000040 20 52 4f 4d 20 69 6d 61 67 65 20 50 52 45 54 54 | ROM image PRETT| 00000050 59 50 52 49 4e 54 20 77 68 69 63 68 20 61 64 64 |YPRINT which add| 00000060 73 20 27 4f 53 5f 50 72 65 74 74 79 50 72 69 6e |s 'OS_PrettyPrin| 00000070 74 27 0d 73 75 70 70 6f 72 74 20 74 6f 20 74 68 |t'.support to th| 00000080 65 20 42 42 43 20 69 6e 20 61 6e 20 69 64 65 6e |e BBC in an iden| 00000090 74 69 63 61 6c 20 6d 61 6e 6e 65 72 20 74 6f 20 |tical manner to | 000000a0 74 68 61 74 20 73 75 70 70 6c 69 65 64 20 6f 6e |that supplied on| 000000b0 20 52 69 73 63 20 4f 53 0d 62 61 73 65 64 20 6d | Risc OS.based m| 000000c0 61 63 68 69 6e 65 73 2e 0d 0d 54 68 65 20 6d 61 |achines...The ma| 000000d0 6e 75 61 6c 20 69 73 20 28 43 29 31 39 39 38 20 |nual is (C)1998 | 000000e0 53 50 52 4f 57 20 61 6e 64 20 73 6f 66 74 77 61 |SPROW and softwa| 000000f0 72 65 20 69 73 20 28 43 29 31 39 39 37 20 53 50 |re is (C)1997 SP| 00000100 52 4f 57 0d 0d 49 4e 53 54 52 55 43 54 49 4f 4e |ROW..INSTRUCTION| 00000110 53 0d 2d 41 74 20 61 6e 79 20 63 6f 6d 6d 61 6e |S.-At any comman| 00000120 64 20 6c 69 6e 65 20 70 72 6f 6d 70 74 2c 65 67 |d line prompt,eg| 00000130 2e 74 68 65 20 42 41 53 49 43 20 63 6f 6d 6d 61 |.the BASIC comma| 00000140 6e 64 20 70 72 6f 6d 70 74 20 27 3e 27 20 74 79 |nd prompt '>' ty| 00000150 70 65 20 0d 4f 4e 20 41 20 4d 41 53 54 45 52 3a |pe .ON A MASTER:| 00000160 20 0d 2a 53 52 4c 4f 41 44 20 44 52 44 49 52 20 | .*SRLOAD DRDIR | 00000170 38 30 30 30 20 3c 73 6f 63 6b 65 74 23 3e 0d 2a |8000 <socket#>.*| 00000180 49 4e 53 45 52 54 20 3c 73 6f 63 6b 65 74 23 3e |INSERT <socket#>| 00000190 0d 77 68 65 72 65 20 3c 73 6f 63 6b 65 74 23 3e |.where <socket#>| 000001a0 20 6d 61 79 20 62 65 20 37 2c 36 2c 35 2c 34 0d | may be 7,6,5,4.| 000001b0 0d 4f 4e 20 41 20 4d 41 43 48 49 4e 45 20 57 49 |.ON A MACHINE WI| 000001c0 54 48 20 53 57 52 41 4d 3a 20 2a 4c 4f 41 44 20 |TH SWRAM: *LOAD | 000001d0 44 52 44 49 52 20 38 30 30 30 20 61 6e 64 20 70 |DRDIR 8000 and p| 000001e0 72 65 73 73 20 43 54 52 4c 2d 42 52 45 41 4b 20 |ress CTRL-BREAK | 000001f0 74 6f 0d 69 6e 69 74 69 61 6c 69 73 65 2e 0d 0d |to.initialise...| 00000200 54 68 65 20 69 6d 61 67 65 20 77 69 6c 6c 20 74 |The image will t| 00000210 68 65 6e 20 62 65 20 69 6e 73 74 61 6c 6c 65 64 |hen be installed| 00000220 20 69 6e 74 6f 20 74 68 65 20 63 68 6f 73 65 6e | into the chosen| 00000230 20 73 6f 63 6b 65 74 20 77 68 65 72 65 20 69 74 | socket where it| 00000240 20 77 69 6c 6c 20 77 61 69 74 0d 66 6f 72 20 74 | will wait.for t| 00000250 68 65 20 75 73 65 72 20 74 6f 20 69 73 73 75 65 |he user to issue| 00000260 20 6f 6e 65 20 6f 66 20 74 68 65 20 66 6f 6c 6c | one of the foll| 00000270 6f 77 69 6e 67 20 74 77 6f 20 73 74 69 6d 75 6c |owing two stimul| 00000280 69 20 20 0d 4f 53 57 4f 52 44 20 43 41 4c 4c 2d |i .OSWORD CALL-| 00000290 41 20 3d 26 34 37 20 61 6e 64 20 58 26 59 20 70 |A =&47 and X&Y p| 000002a0 6f 69 6e 74 20 74 6f 20 61 20 63 6f 6e 74 72 6f |oint to a contro| 000002b0 6c 20 62 6c 6f 63 6b 20 69 6e 20 6d 65 6d 6f 72 |l block in memor| 000002c0 79 20 0d 0d 58 59 2b 30 30 20 34 20 62 79 74 65 |y ..XY+00 4 byte| 000002d0 20 70 6f 69 6e 74 65 72 20 74 6f 20 6e 75 6c 6c | pointer to null| 000002e0 20 74 65 72 6d 69 6e 61 74 65 64 20 73 74 72 69 | terminated stri| 000002f0 6e 67 20 74 6f 20 70 72 69 6e 74 20 28 6c 6f 77 |ng to print (low| 00000300 20 62 79 74 65 20 66 69 72 73 74 29 20 0d 58 59 | byte first) .XY| 00000310 2b 30 34 20 34 20 62 79 74 65 20 20 70 6f 69 6e |+04 4 byte poin| 00000320 74 65 72 20 74 6f 20 75 73 65 72 20 64 69 63 74 |ter to user dict| 00000330 69 6f 6e 61 72 79 2c 6f 72 20 30 20 74 6f 20 75 |ionary,or 0 to u| 00000340 73 65 20 62 75 69 6c 74 20 69 6e 20 64 69 63 74 |se built in dict| 00000350 69 6f 6e 61 72 79 20 20 20 20 20 20 0d 20 20 20 |ionary . | 00000360 20 20 20 28 6c 6f 77 20 62 79 74 65 20 66 69 72 | (low byte fir| 00000370 73 74 29 0d 58 59 2b 30 38 20 34 20 62 79 74 65 |st).XY+08 4 byte| 00000380 20 70 6f 69 6e 74 65 72 20 74 6f 20 6e 75 6c 6c | pointer to null| 00000390 20 74 65 72 6d 69 6e 61 74 65 64 20 27 73 70 65 | terminated 'spe| 000003a0 63 69 61 6c 20 73 74 72 69 6e 67 27 20 28 6c 6f |cial string' (lo| 000003b0 77 20 62 79 74 65 20 66 69 72 73 74 29 0d 58 59 |w byte first).XY| 000003c0 2b 31 32 20 53 6f 75 72 63 65 20 6f 66 20 73 74 |+12 Source of st| 000003d0 72 69 6e 67 20 74 6f 20 70 72 69 6e 74 2c 30 30 |ring to print,00| 000003e0 3d 52 41 4d 20 31 32 38 20 2b 20 73 6f 63 6b 65 |=RAM 128 + socke| 000003f0 74 3d 52 4f 4d 0d 58 59 2b 31 33 20 53 6f 75 72 |t=ROM.XY+13 Sour| 00000400 63 65 20 6f 66 20 75 73 65 72 20 64 69 63 74 69 |ce of user dicti| 00000410 6f 6e 61 72 79 2c 30 30 3d 52 41 4d 20 31 32 38 |onary,00=RAM 128| 00000420 2b 73 6f 63 6b 65 74 3d 52 4f 4d 20 69 66 20 20 |+socket=ROM if | 00000430 58 59 2b 30 34 20 69 73 20 6e 6f 6e 0d 20 20 20 |XY+04 is non. | 00000440 20 20 20 7a 65 72 6f 0d 58 59 2b 31 34 20 53 6f | zero.XY+14 So| 00000450 75 72 63 65 20 6f 66 20 27 73 70 65 63 69 61 6c |urce of 'special| 00000460 20 73 74 72 69 6e 67 27 2c 30 30 3d 52 41 4d 20 | string',00=RAM | 00000470 31 32 38 2b 73 6f 63 6b 65 74 3d 52 4f 4d 0d 0d |128+socket=ROM..| 00000480 43 4f 4d 4d 41 4e 44 20 4c 49 4e 45 2d 0d 2a 48 |COMMAND LINE-.*H| 00000490 45 4c 50 20 22 66 69 6c 65 6e 61 6d 65 22 20 20 |ELP "filename" | 000004a0 77 68 65 72 65 20 22 66 69 6c 65 6e 61 6d 65 22 |where "filename"| 000004b0 20 63 6f 6e 74 61 69 6e 73 20 61 20 20 76 61 6c | contains a val| 000004c0 69 64 20 77 61 64 67 65 20 6f 66 20 74 65 78 74 |id wadge of text| 000004d0 20 61 6e 64 20 20 20 20 20 20 20 20 20 20 20 20 | and | 000004e0 20 20 20 20 20 20 20 20 0d 20 20 20 20 20 20 20 | . | 000004f0 20 20 20 20 20 20 20 20 20 20 20 73 74 61 72 74 | start| 00000500 73 20 77 69 74 68 20 61 20 31 35 20 62 79 74 65 |s with a 15 byte| 00000510 20 62 6c 6f 63 6b 20 61 73 20 74 68 6f 75 67 68 | block as though| 00000520 20 69 74 20 68 61 64 20 62 65 65 6e 20 0d 20 20 | it had been . | 00000530 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000540 65 6e 74 65 72 65 64 20 61 73 20 61 6e 20 4f 53 |entered as an OS| 00000550 57 6f 72 64 2e 0d 20 20 20 20 20 20 20 20 20 20 |Word.. | 00000560 20 20 20 20 20 20 20 20 54 6f 20 6d 61 6b 65 20 | To make | 00000570 61 20 66 69 6c 65 20 74 68 61 74 20 69 73 20 73 |a file that is s| 00000580 75 69 74 61 62 6c 65 20 66 6f 72 20 75 73 65 20 |uitable for use | 00000590 69 6e 20 74 68 69 73 20 6d 61 6e 6e 65 72 20 0d |in this manner .| 000005a0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 000005b0 20 20 69 73 20 72 65 61 6c 6c 79 20 65 61 73 79 | is really easy| 000005c0 2e 20 59 6f 75 20 6a 75 73 74 20 74 61 6b 65 20 |. You just take | 000005d0 79 6f 75 72 20 70 72 65 74 74 79 70 72 69 6e 74 |your prettyprint| 000005e0 20 74 65 78 74 20 0d 20 20 20 20 20 20 20 20 20 | text . | 000005f0 20 20 20 20 20 20 20 20 20 61 6e 64 20 74 68 65 | and the| 00000600 6e 20 70 75 74 20 74 68 65 20 31 35 20 62 79 74 |n put the 15 byt| 00000610 65 20 4f 53 57 6f 72 64 20 62 6c 6f 63 6b 20 61 |e OSWord block a| 00000620 74 20 74 68 65 20 62 65 67 69 6e 6e 69 6e 67 0d |t the beginning.| 00000630 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000640 20 20 6f 66 20 74 68 65 20 66 69 6c 65 2e 20 20 | of the file. | 00000650 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000660 20 20 0d 20 20 20 20 20 20 20 20 20 20 20 20 20 | . | 00000670 20 20 20 20 20 42 65 63 61 75 73 65 20 74 68 65 | Because the| 00000680 20 4f 53 57 6f 72 64 20 62 6c 6f 63 6b 20 6e 65 | OSWord block ne| 00000690 65 64 73 20 61 64 64 72 65 73 73 65 73 20 70 75 |eds addresses pu| 000006a0 74 74 69 6e 67 20 69 6e 20 69 74 2c 20 0d 20 20 |tting in it, . | 000006b0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 000006c0 79 6f 75 27 6c 6c 20 6e 65 65 64 20 74 6f 20 73 |you'll need to s| 000006d0 70 65 63 69 66 79 20 61 20 53 45 4e 53 49 42 4c |pecify a SENSIBL| 000006e0 45 20 6c 6f 61 64 20 61 64 64 72 65 73 73 20 69 |E load address i| 000006f0 6e 20 74 68 65 20 0d 20 20 20 20 20 20 20 20 20 |n the . | 00000700 20 20 20 20 20 20 20 20 20 66 69 6c 65 27 73 20 | file's | 00000710 63 61 74 61 6c 6f 67 75 65 20 65 6e 74 72 79 2e |catalogue entry.| 00000720 0d 0d 45 58 49 54 20 4d 45 53 53 41 47 45 53 0d |..EXIT MESSAGES.| 00000730 2d 4d 69 73 73 69 6e 67 20 22 20 2d 20 74 68 65 |-Missing " - the| 00000740 20 63 6f 6d 6d 61 6e 64 20 6c 69 6e 65 20 68 61 | command line ha| 00000750 64 20 61 20 63 6c 6f 73 69 6e 67 20 64 69 74 74 |d a closing ditt| 00000760 6f 20 6d 69 73 73 69 6e 67 20 0d 44 69 63 74 69 |o missing .Dicti| 00000770 6f 6e 61 72 79 20 65 6e 74 72 79 20 6e 6f 74 20 |onary entry not | 00000780 66 6f 75 6e 64 20 2d 20 61 6e 20 65 73 63 61 70 |found - an escap| 00000790 65 20 73 65 71 75 65 6e 63 65 20 6e 75 6d 62 65 |e sequence numbe| 000007a0 72 20 77 61 73 20 6f 75 74 20 6f 66 20 72 61 6e |r was out of ran| 000007b0 67 65 20 0d 4c 6f 61 64 20 61 64 64 72 65 73 73 |ge .Load address| 000007c0 20 74 6f 6f 20 6c 6f 77 20 2d 20 74 68 65 20 66 | too low - the f| 000007d0 69 6c 65 20 73 70 65 63 69 66 69 65 64 20 6f 6e |ile specified on| 000007e0 20 74 68 65 20 63 6f 6d 6d 61 6e 64 20 6c 69 6e | the command lin| 000007f0 65 20 6c 6f 61 64 65 64 20 69 6e 20 61 74 0d 61 |e loaded in at.a| 00000800 20 73 69 6c 6c 79 20 70 6c 61 63 65 20 69 6e 20 | silly place in | 00000810 74 68 65 20 6d 65 6d 6f 72 79 20 6d 61 70 20 0d |the memory map .| 00000820 46 69 6c 65 20 6e 6f 74 20 66 6f 75 6e 64 20 2d |File not found -| 00000830 20 74 68 65 20 66 69 6c 65 20 73 70 65 63 69 66 | the file specif| 00000840 69 65 64 20 6f 6e 20 74 68 65 20 63 6f 6d 6d 61 |ied on the comma| 00000850 6e 64 20 6c 69 6e 65 20 64 6f 65 73 6e 27 74 20 |nd line doesn't | 00000860 65 78 69 73 74 20 0d 54 75 62 65 20 68 61 72 64 |exist .Tube hard| 00000870 77 61 72 65 20 6e 6f 74 20 66 6f 75 6e 64 20 2d |ware not found -| 00000880 20 74 68 65 20 4f 53 57 6f 72 64 20 62 6c 6f 63 | the OSWord bloc| 00000890 6b 20 73 70 65 63 69 66 69 65 64 20 64 61 74 61 |k specified data| 000008a0 20 74 6f 20 63 6f 6d 65 20 66 6f 72 6d 20 74 68 | to come form th| 000008b0 65 0d 74 75 62 65 0d 0d 4b 4e 4f 57 4e 20 50 52 |e.tube..KNOWN PR| 000008c0 4f 42 4c 45 4d 53 2f 46 55 54 55 52 45 20 45 4e |OBLEMS/FUTURE EN| 000008d0 48 41 4e 43 45 4d 45 4e 54 53 0d 2d 4e 6f 20 6b |HANCEMENTS.-No k| 000008e0 6e 6f 77 6e 20 70 72 6f 62 6c 65 6d 73 20 0d 54 |nown problems .T| 000008f0 65 78 74 20 64 6f 65 73 6e 27 74 20 77 6f 72 64 |ext doesn't word| 00000900 20 77 72 61 70 20 79 65 74 20 0d 0d 48 49 53 54 | wrap yet ..HIST| 00000910 4f 52 59 2d 56 30 2e 39 30 20 46 69 72 73 74 20 |ORY-V0.90 First | 00000920 72 65 6c 65 61 73 65 20 76 65 72 73 69 6f 6e 2c |release version,| 00000930 74 6f 20 74 68 65 20 45 55 47 20 64 69 73 6b 20 |to the EUG disk | 00000940 75 73 65 72 20 67 72 6f 75 70 20 61 6c 6f 6e 67 |user group along| 00000950 20 77 69 74 68 0d 61 6e 20 61 72 74 69 63 6c 65 | with.an article| 00000960 20 6f 6e 20 77 6f 72 64 20 77 72 61 70 70 69 6e | on word wrappin| 00000970 67 20 74 65 78 74 0d 0d 57 48 41 54 20 50 52 45 |g text..WHAT PRE| 00000980 54 54 59 20 50 52 49 4e 54 20 49 53 0d 2d 50 72 |TTY PRINT IS.-Pr| 00000990 65 74 74 79 20 70 72 69 6e 74 20 77 72 69 74 65 |etty print write| 000009a0 73 20 61 20 73 74 72 69 6e 67 20 70 6f 69 6e 74 |s a string point| 000009b0 65 64 20 74 6f 0d 62 79 20 61 6e 20 6f 73 77 6f |ed to.by an oswo| 000009c0 72 64 20 63 6f 6e 74 72 6f 6c 20 62 6c 6f 63 6b |rd control block| 000009d0 2c 69 6e 20 61 64 64 69 74 69 6f 6e 74 68 65 72 |,in additionther| 000009e0 65 20 61 72 65 20 73 6f 6d 65 20 73 70 65 63 69 |e are some speci| 000009f0 61 6c 20 70 72 6f 70 65 72 74 69 65 73 0d 74 68 |al properties.th| 00000a00 61 74 20 69 74 20 6c 6f 6f 6b 73 20 6f 75 74 20 |at it looks out | 00000a10 66 6f 72 20 74 68 6f 75 67 68 3a 0d 20 20 20 2a |for though:. *| 00000a20 20 41 20 63 61 72 72 69 61 67 65 20 72 65 74 75 | A carriage retu| 00000a30 72 6e 20 63 61 75 73 65 73 20 61 20 6e 65 77 6c |rn causes a newl| 00000a40 69 6e 65 20 74 6f 20 62 65 20 67 65 6e 65 72 61 |ine to be genera| 00000a50 74 65 64 20 20 20 0d 0d 20 20 20 2a 20 54 41 42 |ted .. * TAB| 00000a60 20 63 61 75 73 65 73 20 61 20 74 61 62 75 6c 61 | causes a tabula| 00000a70 74 69 6f 6e 20 74 6f 20 74 68 65 20 6e 65 78 74 |tion to the next| 00000a80 20 6d 75 6c 74 69 70 6c 65 20 6f 66 20 65 69 67 | multiple of eig| 00000a90 68 74 20 63 68 61 72 73 20 20 20 0d 0d 20 20 20 |ht chars .. | 00000aa0 2a 20 57 6f 72 64 20 77 72 61 70 73 2c 20 75 6e |* Word wraps, un| 00000ab0 6c 65 73 73 20 74 68 65 20 77 6f 72 64 73 20 61 |less the words a| 00000ac0 72 65 20 73 65 70 61 72 61 74 65 64 20 62 79 20 |re separated by | 00000ad0 43 48 52 24 33 31 20 28 75 73 65 64 20 61 73 20 |CHR$31 (used as | 00000ae0 61 20 68 61 72 64 0d 20 20 20 73 70 61 63 65 29 |a hard. space)| 00000af0 20 20 20 0d 0d 20 20 20 2a 20 45 53 43 20 28 41 | .. * ESC (A| 00000b00 53 43 49 49 20 32 37 29 20 69 6e 64 69 63 61 74 |SCII 27) indicat| 00000b10 65 73 20 74 68 61 74 20 61 20 64 69 63 74 69 6f |es that a dictio| 00000b20 6e 61 72 79 20 65 6e 74 72 79 20 73 68 6f 75 6c |nary entry shoul| 00000b30 64 20 62 65 0d 20 20 20 73 75 62 73 74 69 74 75 |d be. substitu| 00000b40 74 65 64 0d 0d 54 6f 20 75 73 65 20 61 20 64 69 |ted..To use a di| 00000b50 63 74 69 6f 6e 61 72 79 20 65 6e 74 72 79 2c 20 |ctionary entry, | 00000b60 70 6c 61 63 65 20 61 20 43 48 52 24 20 32 37 20 |place a CHR$ 27 | 00000b70 66 6f 6c 6c 6f 77 65 64 20 62 79 20 61 6e 20 65 |followed by an e| 00000b80 6e 74 72 79 20 6e 75 6d 62 65 72 20 74 6f 0d 6c |ntry number to.l| 00000b90 6f 6f 6b 20 75 70 20 69 6e 20 74 68 65 20 72 61 |ook up in the ra| 00000ba0 6e 67 65 20 31 2d 32 35 35 20 28 74 68 65 20 65 |nge 1-255 (the e| 00000bb0 6e 74 72 79 20 27 30 27 20 69 73 20 75 73 65 64 |ntry '0' is used| 00000bc0 20 74 6f 20 6c 6f 6f 6b 20 75 70 20 74 68 65 20 | to look up the | 00000bd0 27 73 70 65 63 69 61 6c 0d 73 74 72 69 6e 67 27 |'special.string'| 00000be0 20 70 6f 69 6e 74 65 64 20 74 6f 20 62 79 20 58 | pointed to by X| 00000bf0 59 2b 38 29 2e 20 54 68 65 72 65 20 69 73 20 61 |Y+8). There is a| 00000c00 20 64 65 66 61 75 6c 74 20 64 69 63 74 69 6f 6e | default diction| 00000c10 61 72 79 2c 20 77 68 69 63 68 20 64 6f 65 73 6e |ary, which doesn| 00000c20 27 74 0d 63 6f 6e 74 61 69 6e 20 61 6c 6c 20 32 |'t.contain all 2| 00000c30 35 35 20 65 6e 74 72 69 65 73 2c 20 62 75 74 20 |55 entries, but | 00000c40 79 6f 75 20 6d 61 79 20 6f 66 20 63 6f 75 72 73 |you may of cours| 00000c50 65 20 73 70 65 63 69 66 79 20 79 6f 75 72 20 6f |e specify your o| 00000c60 77 6e 20 27 55 73 65 72 0d 64 69 63 74 69 6f 6e |wn 'User.diction| 00000c70 61 72 79 27 20 69 66 20 74 68 65 20 61 70 70 6c |ary' if the appl| 00000c80 69 63 61 74 69 6f 6e 20 79 6f 75 20 68 61 76 65 |ication you have| 00000c90 20 69 6e 20 6d 69 6e 64 20 75 73 65 73 20 61 20 | in mind uses a | 00000ca0 6c 6f 74 20 6f 66 20 74 68 65 20 73 61 6d 65 0d |lot of the same.| 00000cb0 73 74 72 69 6e 67 73 2e 20 65 67 2e 20 61 20 63 |strings. eg. a c| 00000cc0 68 65 6d 69 73 74 72 79 20 72 65 6c 61 74 65 64 |hemistry related| 00000cd0 20 70 72 6f 67 72 61 6d 2e 20 0d 0d 45 66 66 65 | program. ..Effe| 00000ce0 63 74 69 76 65 6c 79 20 74 68 69 73 20 77 69 6c |ctively this wil| 00000cf0 6c 20 72 65 73 75 6c 74 20 69 6e 20 74 65 78 74 |l result in text| 00000d00 20 62 65 69 6e 67 20 63 6f 6d 70 61 63 74 65 64 | being compacted| 00000d10 20 73 69 6e 63 65 20 77 68 6f 6c 65 20 77 6f 72 | since whole wor| 00000d20 64 73 20 61 72 65 0d 72 65 70 6c 61 63 65 64 20 |ds are.replaced | 00000d30 62 79 20 6a 75 73 74 20 74 77 6f 20 62 79 74 65 |by just two byte| 00000d40 73 2e 0d 0d 44 49 43 54 49 4f 4e 41 52 59 20 46 |s...DICTIONARY F| 00000d50 4f 52 4d 41 54 0d 2d 20 44 69 63 74 69 6f 6e 61 |ORMAT.- Dictiona| 00000d60 72 79 20 65 6e 74 72 69 65 73 20 6d 61 79 20 72 |ry entries may r| 00000d70 65 63 75 72 73 69 76 65 6c 79 20 72 65 66 65 72 |ecursively refer| 00000d80 20 74 6f 20 6f 74 68 65 72 20 64 69 63 74 69 6f | to other dictio| 00000d90 6e 61 72 79 0d 65 6e 74 72 69 65 73 2c 6e 65 73 |nary.entries,nes| 00000da0 74 65 64 20 6e 6f 20 64 65 65 70 65 72 20 74 68 |ted no deeper th| 00000db0 61 6e 20 33 32 20 6c 65 76 65 6c 73 20 28 6f 74 |an 32 levels (ot| 00000dc0 68 65 72 77 69 73 65 20 74 68 65 20 73 74 61 63 |herwise the stac| 00000dd0 6b 20 6f 76 65 72 66 6c 6f 77 73 29 2e 0d 54 68 |k overflows)..Th| 00000de0 65 20 66 69 72 73 74 20 62 79 74 65 20 6f 66 20 |e first byte of | 00000df0 74 68 65 65 6e 74 72 79 20 70 6f 69 6e 74 73 20 |theentry points | 00000e00 74 6f 20 74 68 65 20 6e 65 78 74 20 65 6e 74 72 |to the next entr| 00000e10 79 2c 74 68 65 6e 20 74 68 65 72 65 27 73 20 74 |y,then there's t| 00000e20 65 78 74 0d 74 65 72 6d 69 6e 61 74 65 64 20 62 |ext.terminated b| 00000e30 79 20 61 20 30 20 62 79 74 65 2e 53 6f 20 66 6f |y a 0 byte.So fo| 00000e40 72 61 20 66 69 6c 65 20 6f 66 20 4e 20 73 74 72 |ra file of N str| 00000e50 69 6e 67 73 3a 0d 3c 6f 66 66 73 65 74 74 6f 73 |ings:.<offsettos| 00000e60 74 61 72 74 6f 66 73 74 72 69 6e 67 54 57 4f 3e |tartofstringTWO>| 00000e70 3c 31 53 54 73 74 72 69 6e 67 24 6f 66 32 35 35 |<1STstring$of255| 00000e80 63 68 72 24 6f 72 6c 65 73 73 3e 3c 30 30 3e 0d |chr$orless><00>.| 00000e90 3c 6f 66 66 73 65 74 74 6f 73 74 61 72 74 6f 66 |<offsettostartof| 00000ea0 73 74 72 69 6e 67 54 48 52 45 45 3e 3c 32 4e 44 |stringTHREE><2ND| 00000eb0 73 74 72 69 6e 67 24 6f 66 32 35 35 63 68 72 24 |string$of255chr$| 00000ec0 6f 72 6c 65 73 73 3e 3c 30 30 3e 20 20 0d 20 20 |orless><00> . | 00000ed0 20 3a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | : | 00000ee0 20 20 20 20 20 20 20 20 20 20 20 20 3a 20 20 20 | : | 00000ef0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000f00 20 20 20 20 20 3a 0d 20 20 20 3a 20 20 20 20 20 | :. : | 00000f10 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000f20 20 20 20 20 20 3a 20 20 20 20 20 20 20 20 20 20 | : | 00000f30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 3a 20 | : | 00000f40 0d 3c 6f 66 66 73 65 74 74 6f 73 74 61 72 74 6f |.<offsettostarto| 00000f50 66 73 74 72 69 6e 67 28 4e 2d 31 29 3e 3c 28 4e |fstring(N-1)><(N| 00000f60 2d 31 29 54 48 73 74 72 69 6e 67 24 6f 66 32 35 |-1)THstring$of25| 00000f70 35 63 68 72 24 6f 72 6c 65 73 73 3e 3c 30 30 3e |5chr$orless><00>| 00000f80 0d 3c 30 30 3e 3c 4e 54 48 73 74 72 69 6e 67 24 |.<00><NTHstring$| 00000f90 6f 66 32 35 35 63 68 72 24 6f 72 6c 65 73 73 3e |of255chr$orless>| 00000fa0 3c 30 30 3e 0d 0d 44 45 46 41 55 4c 54 20 44 49 |<00>..DEFAULT DI| 00000fb0 43 54 49 4f 4e 41 52 59 0d 2d 30 30 3d 3e 3c 73 |CTIONARY.-00=><s| 00000fc0 74 72 69 6e 67 20 70 6f 69 6e 74 65 64 20 74 6f |tring pointed to| 00000fd0 20 62 79 20 58 59 2b 38 3e 0d 30 31 3d 3e 22 53 | by XY+8>.01=>"S| 00000fe0 79 6e 74 61 78 3a 20 2a 22 2b 3c 73 74 72 69 6e |yntax: *"+<strin| 00000ff0 67 20 70 6f 69 6e 74 65 64 20 20 74 6f 20 62 79 |g pointed to by| 00001000 20 58 59 2b 38 3e 0d 30 32 3d 3e 22 20 74 68 65 | XY+8>.02=>" the| 00001010 20 22 0d 30 33 3d 3e 22 64 69 72 65 63 74 6f 72 | ".03=>"director| 00001020 22 0d 30 34 3d 3e 22 66 69 6c 69 6e 67 20 73 79 |".04=>"filing sy| 00001030 73 74 65 6d 22 0d 30 35 3d 3e 22 63 75 72 72 65 |stem".05=>"curre| 00001040 6e 74 22 0d 30 36 3d 3e 22 20 74 6f 20 61 20 76 |nt".06=>" to a v| 00001050 61 72 69 61 62 6c 65 2e 20 4f 74 68 65 72 20 74 |ariable. Other t| 00001060 79 70 65 73 20 6f 66 20 76 61 6c 75 65 73 20 63 |ypes of values c| 00001070 61 6e 20 62 65 20 61 73 73 69 67 6e 65 64 20 77 |an be assigned w| 00001080 69 74 68 20 20 2a 22 0d 30 37 3d 3e 22 66 69 6c |ith *".07=>"fil| 00001090 65 22 0d 30 38 3d 3e 22 64 65 66 61 75 6c 74 20 |e".08=>"default | 000010a0 22 0d 30 39 3d 3e 22 74 69 6f 6e 22 0d 31 30 3d |".09=>"tion".10=| 000010b0 3e 22 2a 43 6f 6e 66 69 67 75 72 65 22 0d 31 31 |>"*Configure".11| 000010c0 3d 3e 22 6e 61 6d 65 22 0d 31 32 3d 3e 22 20 73 |=>"name".12=>" s| 000010d0 65 72 76 65 72 22 0d 31 33 3d 3e 22 6e 75 6d 62 |erver".13=>"numb| 000010e0 65 72 22 0d 31 34 3d 3e 22 53 79 6e 74 61 78 3a |er".14=>"Syntax:| 000010f0 20 2a 22 2b 3c 73 74 72 69 6e 67 20 70 6f 69 6e | *"+<string poin| 00001100 74 65 64 20 74 6f 20 62 79 20 58 59 2b 38 3e 2b |ted to by XY+8>+| 00001110 20 22 20 3c 22 0d 31 35 3d 3e 22 20 6f 6e 65 20 | " <".15=>" one | 00001120 6f 72 20 6d 6f 72 65 20 66 69 6c 65 73 20 74 68 |or more files th| 00001130 61 74 20 6d 61 74 63 68 20 74 68 65 20 67 69 76 |at match the giv| 00001140 65 6e 20 77 69 6c 64 63 61 72 64 22 0d 31 36 3d |en wildcard".16=| 00001150 3e 22 20 61 6e 64 22 0d 31 37 3d 3e 22 72 65 6c |>" and".17=>"rel| 00001160 6f 63 61 74 61 62 6c 65 20 6d 6f 64 75 6c 65 22 |ocatable module"| 00001170 0d 31 38 3d 3e 43 52 2b 22 43 28 6f 6e 66 69 72 |.18=>CR+"C(onfir| 00001180 6d 29 22 2b 54 41 42 2b 22 50 72 6f 6d 70 74 20 |m)"+TAB+"Prompt | 00001190 66 6f 72 20 63 6f 6e 66 20 69 72 6d 61 74 69 6f |for conf irmatio| 000011a0 6e 20 6f 66 20 65 61 63 68 22 0d 31 39 3d 3e 22 |n of each".19=>"| 000011b0 73 65 74 73 20 74 68 65 22 0d 32 30 3d 3e 53 79 |sets the".20=>Sy| 000011c0 6e 74 61 78 3a 20 2a 22 2b 3c 73 74 72 69 6e 67 |ntax: *"+<string| 000011d0 20 70 6f 69 6e 74 65 64 20 74 6f 20 62 79 20 58 | pointed to by X| 000011e0 59 2b 38 3e 2b 22 20 5b 3c 64 69 73 63 20 73 70 |Y+8>+" [<disc sp| 000011f0 65 63 2e 3e 5d 22 0d 32 31 3d 3e 22 29 22 2b 43 |ec.>]".21=>")"+C| 00001200 52 2b 22 56 28 65 72 62 6f 73 65 29 22 2b 54 41 |R+"V(erbose)"+TA| 00001210 42 2b 22 50 72 69 6e 74 20 69 6e 66 6f 72 6d 61 |B+"Print informa| 00001220 20 74 69 6f 6e 20 6f 6e 20 65 61 63 68 20 66 69 | tion on each fi| 00001230 6c 65 22 0d 32 32 3d 3e 22 73 70 72 69 74 65 4c |le".22=>"spriteL| 00001240 61 6e 64 73 63 61 70 65 20 5b 3c 58 53 63 61 6c |andscape [<XScal| 00001250 65 3e 20 5b 3c 59 53 63 61 6c 65 3e 20 5b 3c 4d |e> [<YScale> [<M| 00001260 61 72 67 69 6e 3e 5b 3c 54 68 72 65 73 68 6f 6c |argin>[<Threshol| 00001270 64 3e 5d 5d 5d 5d 5d 22 0d 32 33 3d 3e 22 69 73 |d>]]]]]".23=>"is| 00001280 20 75 73 65 64 20 74 6f 20 70 72 69 6e 74 20 61 | used to print a| 00001290 20 68 61 72 64 20 63 6f 70 79 20 6f 66 20 74 68 | hard copy of th| 000012a0 65 20 73 63 72 65 65 6e 20 6f 6e 20 45 50 53 4f |e screen on EPSO| 000012b0 4e 2d 22 0d 32 34 3d 3e 22 2e 22 2b 43 52 2b 22 |N-".24=>"."+CR+"| 000012c0 4f 70 74 69 6f 6e 73 3a 20 28 75 73 65 20 7e 20 |Options: (use ~ | 000012d0 74 6f 20 66 6f 72 63 65 20 6f 66 66 2c 20 65 67 |to force off, eg| 000012e0 2e 7e 22 0d 32 35 3d 3e 22 70 72 69 6e 74 65 22 |.~".25=>"printe"| 000012f0 0d 32 36 3d 3e 22 53 79 6e 74 61 78 3a 20 2a 22 |.26=>"Syntax: *"| 00001300 2b 3c 73 74 72 69 6e 67 20 70 6f 69 6e 74 65 64 |+<string pointed| 00001310 20 74 6f 20 62 79 20 58 59 2b 38 3e 2b 22 20 3c | to by XY+8>+" <| 00001320 66 69 6c 65 6e 61 6d 65 3e 22 0d 32 37 3d 3e 22 |filename>".27=>"| 00001330 73 65 6c 65 63 74 22 0d 32 38 3d 3e 22 78 70 72 |select".28=>"xpr| 00001340 65 73 73 69 6f 6e 22 0d 32 39 3d 3e 53 79 6e 74 |ession".29=>Synt| 00001350 61 78 3a 20 2a 22 2b 3c 73 74 72 69 6e 67 20 70 |ax: *"+<string p| 00001360 6f 69 6e 74 65 64 20 74 6f 20 62 79 20 58 59 2b |ointed to by XY+| 00001370 38 3e 2b 22 5b 22 0d 33 30 3d 3e 22 73 70 72 69 |8>+"[".30=>"spri| 00001380 74 65 22 0d 33 31 3d 3e 22 20 64 69 73 70 6c 61 |te".31=>" displa| 00001390 79 73 22 0d 33 32 3d 3e 22 66 72 65 65 20 73 70 |ys".32=>"free sp| 000013a0 61 63 65 22 0d 33 33 3d 3e 22 20 7b 6f 66 66 7d |ace".33=>" {off}| 000013b0 22 0d 33 34 3d 3e 22 6c 69 62 72 61 72 79 22 0d |".34=>"library".| 000013c0 33 35 3d 3e 22 70 61 72 61 6d 65 74 65 72 22 0d |35=>"parameter".| 000013d0 33 36 3d 3e 22 6f 62 6a 65 63 74 22 0d 33 37 3d |36=>"object".37=| 000013e0 3e 22 20 61 6c 6c 20 22 0d 33 38 3d 3e 22 64 69 |>" all ".38=>"di| 000013f0 73 63 22 0d 33 39 3d 3e 22 20 74 6f 20 22 0d 34 |sc".39=>" to ".4| 00001400 30 3d 3e 22 20 69 73 20 22 0d |0=>" is ".| 0000140a