|
DataMuseum.dkPresents historical artifacts from the history of: CP/M |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about CP/M Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - download
Length: 6272 (0x1880) Types: RcTekst Names: »31-D717.WP«
└─⟦b9fe312e5⟧ Bits:30008868 Diskette med 3 stk RCSL-30-M og 3 stk RCSL-31-D └─⟦this⟧ »31-D717.WP«
╱0400274e0c0006000000000301483160000000000000000000000000000000000000000000000000050a0f14191e23282d32373c41464bff04╱ ┆06┆i↲ ↲ ↲ ╞ ╞ Foreword:↲ ↲ ╞ ╞ ┆84┆In the two compilers ALGOL and FORTRAN, the linking phase, ↓ ┆19┆┆89┆┄┄pass9, is able to pick up and link into a program any number of ↓ ┆19┆┆89┆┄┄external ALGOL procedures, external FORTRAN subroutines/func┄┄↓ ┆19┆┆89┆┄┄tions or code procedures described in the catalog.↲ ↲ ╞ ╞ ┆84┆The procedures may be picked up from procedure libraries, i.e. ↓ ┆19┆┆89┆┄┄collections of procedures stored together on single backing ↓ ┆19┆┆89┆┄┄storage areas being procedures themselves.↲ ↲ ╞ ╞ ┆84┆The present program, compresslib, is used to collect such ↓ ┆19┆┆89┆┄┄libraries of procedures, being external ALGOL procedures, ↓ ┆19┆┆89┆┄┄external FORTRAN subroutines/functions or code procedures in ↓ ┆19┆┆89┆┄┄any mix.↲ ↲ ↲ ╞ ╞ F.G. Strøbech↲ ╞ ╞ A/S Regnecentralen, May 1984↲ ↲ ════════════════════════════════════════════════════════════════════════ ↓ ┆06┆ii↲ ════════════════════════════════════════════════════════════════════════ ↓ ┆06┆iii↲ ↲ ┆a1┆┆b0┆TABLE OF CONTENTS┆05┆PAGE↲ ↲ ┆b0┆1. INTRODUCTION ......................................................1↲ ↲ ┆b0┆2. EXAMPLE ...........................................................2↲ ↲ ┆b0┆3. CALL ..............................................................3↲ ↲ ┆b0┆4. FUNCTION ..........................................................4↲ ↲ ┆b0┆5. STORAGE REQUIREMENTS ..............................................5↲ ↲ ┆b0┆6. ERROR MESSAGES ....................................................6↲ ↲ ┆b0┆7. APPENDIX ..........................................................8↲ ↲ ════════════════════════════════════════════════════════════════════════ ↓ ┆06┆iv↲ ════════════════════════════════════════════════════════════════════════ ↓ ┆14┆┆b3┆┆06┆┆0b┆↲ ↲ ┆b0┆┆a1┆1.╞ ╞ INTRODUCTION↲ ↲ ╞ ╞ ┆84┆The program compresses into one single area a number of exter-↓ ┆19┆┆89┆┄┄nal ALGOL / FORTRAN procedures or code procedures to occupy a ↓ ┆19┆┆89┆┄┄minimum number of segments.↲ ↲ ↲ ════════════════════════════════════════════════════════════════════════ ↓ ┆a1┆┆b0┆2.╞ ╞ EXAMPLE:↲ ↲ ╞ ╞ ┆84┆The call↲ ╞ ╞ read = compresslib write arctan ln arcsin↲ ╞ ╞ ┆84┆collects into one single area the algol library procedures ↓ ┆19┆┆89┆┄┄read, write, arctan, ln and arcsin and sets the descriptors of ↓ ┆19┆┆89┆┄┄these procedures so that they may be found and accepted by the ↓ ┆19┆┆89┆┄┄ALGOL and FORTRAN compilers.↲ ↲ ↲ ════════════════════════════════════════════════════════════════════════ ↓ ┆a1┆┆b0┆3.╞ ╞ CALL:↲ ↲ ╞ ╞ ┆84┆<collection area> = <compresslib> <s><procedure area>↲ ╞ ╞ <collection area> ::= <procedure area>↲ ╞ ╞ <procedure area> ::= <name>↲ ↲ ╞ ╞ ┆84┆A procedure area is an area entry with content 4, and with ↓ ┆19┆┆89┆┄┄length > 0.↲ ╞ ╞ ┆84┆The intervals of the procedure areas must be equal to the ↓ ┆19┆┆89┆┄┄catalog base of the process, which must be contained in or be ↓ ┆19┆┆89┆┄┄equal to the standard interval of the process.↲ ↲ ↲ ════════════════════════════════════════════════════════════════════════ ↓ ┆a1┆┆b0┆4.╞ ╞ FUNCTION:↲ ↲ ╞ ╞ ┆84┆The contents of the collection area is examined so that it is ↓ ┆19┆┆89┆┄┄known how much space the code and the external list take up in ↓ ┆19┆┆89┆┄┄the area. Then the procedure areas on the right hand side are ↓ ┆19┆┆89┆┄┄scanned from left to right and their code and external lists ↓ ┆19┆┆89┆┄┄are placed one after the other as tight as possible after the ↓ ┆19┆┆89┆┄┄external list and the code of the collection area. If necessary ↓ ┆19┆┆89┆┄┄the collection area is extended as the processing proceeds. ↓ ┆19┆┆89┆┄┄Parameters not accepted in this phase are dropped in the com┄↓ ┆19┆┆89┆┄┄pression. When all procedure areas have been collected, the ↓ ┆19┆┆89┆┄┄accepted areas are removed and the procedures are described as ↓ ┆19┆┆89┆┄┄shared main entries (see the appendix), i.e. the content be┄↓ ┆19┆┆89┆┄┄comes 32 + first segment in the collection area, and the mode ↓ ┆19┆┆89┆┄┄kind becomes bs.↲ ╞ ╞ Possible sub entries to the procedure areas are not changed.↲ ↲ ↲ ════════════════════════════════════════════════════════════════════════ ↓ ┆a1┆┆b0┆5.╞ ╞ STORAGE REQUIREMENTS↲ ↲ ╞ ╞ ┆84┆900 halfwords + room for FP + room for the largest external ↓ ┆19┆┆89┆┄┄procedure.↲ ↲ ↲ ════════════════════════════════════════════════════════════════════════ ↓ ┆a1┆┆b0┆6.╞ ╞ ERROR MESSAGES.↲ ↲ ╞ ╞ ┆84┆All error messages have the following form:↲ ╞ ╞ ╞ ***compresslib <param> <further explanation>↲ ╞ ╞ ┆84┆After an error message of this form, the standard actions are ↓ ┆19┆┆89┆┄┄as follows:↲ ╞ ╞ ┆84┆If <param> is absent or it is the name of the collection area, ↓ ┆19┆┆89┆┄┄the program terminates immediately. None of the procedure areas ↓ ┆19┆┆89┆┄┄to the right will be changed.↲ ╞ ╞ ┆84┆If <param> is one of the right hand parameters, this parameter ↓ ┆19┆┆89┆┄┄is dropped from the compression, but the other parameters will ↓ ┆19┆┆89┆┄┄not be affected.↲ ↲ ╞ ╞ Further explanation may be:↲ ↲ ╞ ╞ connect error: ┆84┆The area could not be connected for input ↓ ┆19┆┆9d┆┄┄or output. The reason may be that it is ↓ ┆19┆┆9d┆┄┄reserved for output by another process.↲ ↲ ╞ ╞ unknown : The area could not be found.↲ ↲ ╞ ╞ interval : ┆84┆The interval of the procedure area is not ↓ ┆19┆┆9d┆┄┄equal to the interval of the collection ↓ ┆19┆┆9d┆┄┄area.↲ ↲ ╞ ╞ content : ┆84┆The parameter does not denote an external ↓ ┆19┆┆9d┆┄┄procedure.↲ ↲ ╞ ╞ not area : ┆84┆The parameter does not denote an area (with ↓ ┆19┆┆9d┆┄┄length > 0).↲ ↲ ╞ ╞ intervals : ┆84┆The interval of the collection area is not ↓ ┆19┆┆9d┆┄┄equal to the catalog base of the process or ↓ ┆19┆┆9d┆┄┄the cata┄log base is not contained in or ↓ ┆19┆┆9d┆┄┄equal to the standard interval of the ↓ ┆19┆┆9d┆┄┄process.↲ ↲ ════════════════════════════════════════════════════════════════════════ ↓ ╞ ╞ no collection area: The program call has no left hand side.↲ ↲ ╞ ╞ transport error : ┆84┆Input from a procedure area or output to ↓ ┆19┆┆9d┆┄┄the collection area is impossible. Usually ↓ ┆19┆┆9d┆┄┄because of claims exceeded or bs_fault.↲ ↲ ╞ ╞ process too small : ┆84┆It is impossible to hold the entire proce-↓ ┆19┆┆9d┆┄┄dure in the process area. If param is the ↓ ┆19┆┆9d┆┄┄collection area, it is impossible to hold ↓ ┆19┆┆9d┆┄┄the external list in the process area.↲ ↲ ╞ ╞ too many segments : ┆84┆The collection area has exceeded 4063 ↓ ┆19┆┆9d┆┄┄segments.↲ ↲ ↲ ════════════════════════════════════════════════════════════════════════ ↓ ┆a1┆┆b0┆A.╞ ╞ APPENDIX:↲ ↲ ╞ ╞ ┆84┆In the FP-system, file descriptors are usually either area ↓ ┆19┆┆89┆┄┄descriptors or file descriptors describing (sub)files in a bs ↓ ┆19┆┆89┆┄┄area or peripheral file. Usually only one level of indirect ↓ ┆19┆┆89┆┄┄description of areas is alloved. For external procedures to ↓ ┆19┆┆89┆┄┄ALGOL or FORTRAN programs however, two levels of indirect ↓ ┆19┆┆89┆┄┄description of areas are allowed. An external procedure may be ↓ ┆19┆┆89┆┄┄described in the catalog by the following descriptors↲ ↲ ╞ ╞ main entry:╞ ╞ length > 0,╞ content = 4↲ ╞ ╞ shared entry:╞ ╞ length = bs,╞ content = 4↲ ╞ ╞ shared main entry:╞ length = bs,╞ content >= 32↲ ↲ ╞ ╞ ┆84┆A shared entry will either have the name of a main entry or a ↓ ┆19┆┆89┆┄┄shared main entry in its document name field.↲ ╞ ╞ ┆84┆A shared main entry has the name of a main entry (the collec-↓ ┆19┆┆89┆┄┄tion area) in its document name field.↲ ╞ ╞ ┆84┆The value of the content field is segment no. of external list ↓ ┆19┆┆89┆┄┄+ 32.↲ ↲ ┆1a┆┆1a┆↓ ↓ ┆1a┆ list ↓ ┆19┆┆89┆┄┄+ 32.↲ ↲ ↓ ┆1a┆↲ ↓ ┆1a┆stiles can be read (max. 25 Kbytes). ↓ ┆19┆┆89┆┄┄The contents of the file are read into the edit b
0x0000…0020 (0,) 00 00 00 00 00 00 00 00 42 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 08 4e 00 00 00 ┆ B N ┆ 0x0020…0040 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ┆ ┆ 0x0040…0047 00 00 00 00 00 00 00 ┆ ┆ 0x0047…0080 Params { 0x0047…0080 04 00 27 4e 0c 00 06 00 00 00 00 03 01 48 31 60 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ┆ 'N H1` ┆ 0x0047…0080 00 00 00 00 00 00 00 00 05 0a 0f 14 19 1e 23 28 2d 32 37 3c 41 46 4b ff 04 ┆ #(-27<AFK ┆ 0x0047…0080 } 0x0080…00a0 06 69 0d 0a 0d 0a 0d 0a 09 09 46 6f 72 65 77 6f 72 64 3a 0d 0a 0d 0a 09 09 84 49 6e 20 74 68 65 ┆ i Foreword: In the┆ 0x00a0…00c0 20 74 77 6f 20 63 6f 6d 70 69 6c 65 72 73 20 41 4c 47 4f 4c 20 61 6e 64 20 46 4f 52 54 52 41 4e ┆ two compilers ALGOL and FORTRAN┆ 0x00c0…00e0 2c 20 74 68 65 20 6c 69 6e 6b 69 6e 67 20 70 68 61 73 65 2c 20 0a 19 89 80 80 70 61 73 73 39 2c ┆, the linking phase, pass9,┆ 0x00e0…0100 20 69 73 20 61 62 6c 65 20 74 6f 20 70 69 63 6b 20 75 70 20 61 6e 64 20 6c 69 6e 6b 20 69 6e 74 ┆ is able to pick up and link int┆ 0x0100…0120 6f 20 61 20 70 72 6f 67 72 61 6d 20 61 6e 79 20 6e 75 6d 62 65 72 20 6f 66 20 0a 19 89 80 80 65 ┆o a program any number of e┆ 0x0120…0140 78 74 65 72 6e 61 6c 20 41 4c 47 4f 4c 20 70 72 6f 63 65 64 75 72 65 73 2c 20 65 78 74 65 72 6e ┆xternal ALGOL procedures, extern┆ 0x0140…0160 61 6c 20 46 4f 52 54 52 41 4e 20 73 75 62 72 6f 75 74 69 6e 65 73 2f 66 75 6e 63 80 80 0a 19 89 ┆al FORTRAN subroutines/func ┆ 0x0160…0180 80 80 74 69 6f 6e 73 20 6f 72 20 63 6f 64 65 20 70 72 6f 63 65 64 75 72 65 73 20 64 65 73 63 72 ┆ tions or code procedures descr┆ 0x0180…01a0 69 62 65 64 20 69 6e 20 74 68 65 20 63 61 74 61 6c 6f 67 2e 0d 0a 0d 0a 09 09 84 54 68 65 20 70 ┆ibed in the catalog. The p┆ 0x01a0…01c0 72 6f 63 65 64 75 72 65 73 20 6d 61 79 20 62 65 20 70 69 63 6b 65 64 20 75 70 20 66 72 6f 6d 20 ┆rocedures may be picked up from ┆ 0x01c0…01e0 70 72 6f 63 65 64 75 72 65 20 6c 69 62 72 61 72 69 65 73 2c 20 69 2e 65 2e 20 0a 19 89 80 80 63 ┆procedure libraries, i.e. c┆ 0x01e0…0200 6f 6c 6c 65 63 74 69 6f 6e 73 20 6f 66 20 70 72 6f 63 65 64 75 72 65 73 20 73 74 6f 72 65 64 20 ┆ollections of procedures stored ┆ 0x0200…0220 (1,) 74 6f 67 65 74 68 65 72 20 6f 6e 20 73 69 6e 67 6c 65 20 62 61 63 6b 69 6e 67 20 0a 19 89 80 80 ┆together on single backing ┆ 0x0220…0240 73 74 6f 72 61 67 65 20 61 72 65 61 73 20 62 65 69 6e 67 20 70 72 6f 63 65 64 75 72 65 73 20 74 ┆storage areas being procedures t┆ 0x0240…0260 68 65 6d 73 65 6c 76 65 73 2e 0d 0a 0d 0a 09 09 84 54 68 65 20 70 72 65 73 65 6e 74 20 70 72 6f ┆hemselves. The present pro┆ 0x0260…0280 67 72 61 6d 2c 20 63 6f 6d 70 72 65 73 73 6c 69 62 2c 20 69 73 20 75 73 65 64 20 74 6f 20 63 6f ┆gram, compresslib, is used to co┆ 0x0280…02a0 6c 6c 65 63 74 20 73 75 63 68 20 0a 19 89 80 80 6c 69 62 72 61 72 69 65 73 20 6f 66 20 70 72 6f ┆llect such libraries of pro┆ 0x02a0…02c0 63 65 64 75 72 65 73 2c 20 62 65 69 6e 67 20 65 78 74 65 72 6e 61 6c 20 41 4c 47 4f 4c 20 70 72 ┆cedures, being external ALGOL pr┆ 0x02c0…02e0 6f 63 65 64 75 72 65 73 2c 20 0a 19 89 80 80 65 78 74 65 72 6e 61 6c 20 46 4f 52 54 52 41 4e 20 ┆ocedures, external FORTRAN ┆ 0x02e0…0300 73 75 62 72 6f 75 74 69 6e 65 73 2f 66 75 6e 63 74 69 6f 6e 73 20 6f 72 20 63 6f 64 65 20 70 72 ┆subroutines/functions or code pr┆ 0x0300…0320 6f 63 65 64 75 72 65 73 20 69 6e 20 0a 19 89 80 80 61 6e 79 20 6d 69 78 2e 0d 0a 0d 0a 0d 0a 09 ┆ocedures in any mix. ┆ 0x0320…0340 09 46 2e 47 2e 20 53 74 72 7c 62 65 63 68 0d 0a 09 09 41 2f 53 20 52 65 67 6e 65 63 65 6e 74 72 ┆ F.G. Strøbech A/S Regnecentr┆ 0x0340…0352 61 6c 65 6e 2c 20 4d 61 79 20 31 39 38 34 0d 0a 0d 0a ┆alen, May 1984 ┆ 0x0352…0355 FormFeed { 0x0352…0355 0c 82 94 ┆ ┆ 0x0352…0355 } 0x0355…035b 0a 06 69 69 0d 0a ┆ ii ┆ 0x035b…035e FormFeed { 0x035b…035e 0c 80 8c ┆ ┆ 0x035b…035e } 0x035e…0360 0a 06 ┆ ┆ 0x0360…0380 69 69 69 0d 0a 0d 0a a1 b0 54 41 42 4c 45 20 4f 46 20 43 4f 4e 54 45 4e 54 53 05 50 41 47 45 0d ┆iii TABLE OF CONTENTS PAGE ┆ 0x0380…03a0 0a 0d 0a b0 31 2e 20 20 49 4e 54 52 4f 44 55 43 54 49 4f 4e 20 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e ┆ 1. INTRODUCTION ...........┆ 0x03a0…03c0 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e ┆................................┆ 0x03c0…03e0 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 31 0d 0a 0d 0a b0 32 2e 20 20 45 58 41 4d 50 4c 45 20 2e 2e 2e ┆...........1 2. EXAMPLE ...┆ 0x03e0…0400 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e ┆................................┆ 0x0400…0420 (2,) 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 32 0d 0a 0d 0a b0 33 2e ┆........................2 3.┆ 0x0420…0440 20 20 43 41 4c 4c 20 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e ┆ CALL .........................┆ 0x0440…0460 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e ┆................................┆ 0x0460…0480 2e 2e 2e 2e 2e 33 0d 0a 0d 0a b0 34 2e 20 20 46 55 4e 43 54 49 4f 4e 20 2e 2e 2e 2e 2e 2e 2e 2e ┆.....3 4. FUNCTION ........┆ 0x0480…04a0 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e ┆................................┆ 0x04a0…04c0 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 34 0d 0a 0d 0a b0 35 2e 20 20 53 54 4f 52 ┆..................4 5. STOR┆ 0x04c0…04e0 41 47 45 20 52 45 51 55 49 52 45 4d 45 4e 54 53 20 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e ┆AGE REQUIREMENTS ...............┆ 0x04e0…0500 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 35 ┆...............................5┆ 0x0500…0520 0d 0a 0d 0a b0 36 2e 20 20 45 52 52 4f 52 20 4d 45 53 53 41 47 45 53 20 2e 2e 2e 2e 2e 2e 2e 2e ┆ 6. ERROR MESSAGES ........┆ 0x0520…0540 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e ┆................................┆ 0x0540…0560 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 36 0d 0a 0d 0a b0 37 2e 20 20 41 50 50 45 4e 44 49 58 20 2e ┆............6 7. APPENDIX .┆ 0x0560…0580 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e ┆................................┆ 0x0580…059e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 2e 38 0d 0a 0d 0a ┆.........................8 ┆ 0x059e…05a1 FormFeed { 0x059e…05a1 0c 81 d8 ┆ ┆ 0x059e…05a1 } 0x05a1…05a7 0a 06 69 76 0d 0a ┆ iv ┆ 0x05a7…05aa FormFeed { 0x05a7…05aa 0c 80 8c ┆ ┆ 0x05a7…05aa } 0x05aa…05c0 0a 14 b3 06 0b 0d 0a 0d 0a b0 a1 31 2e 09 09 49 4e 54 52 4f 44 55 ┆ 1. INTRODU┆ 0x05c0…05e0 43 54 49 4f 4e 0d 0a 0d 0a 09 09 84 54 68 65 20 70 72 6f 67 72 61 6d 20 63 6f 6d 70 72 65 73 73 ┆CTION The program compress┆ 0x05e0…0600 65 73 20 69 6e 74 6f 20 6f 6e 65 20 73 69 6e 67 6c 65 20 61 72 65 61 20 61 20 6e 75 6d 62 65 72 ┆es into one single area a number┆ 0x0600…0620 (3,) 20 6f 66 20 65 78 74 65 72 2d 0a 19 89 80 80 6e 61 6c 20 41 4c 47 4f 4c 20 2f 20 46 4f 52 54 52 ┆ of exter- nal ALGOL / FORTR┆ 0x0620…0640 41 4e 20 70 72 6f 63 65 64 75 72 65 73 20 6f 72 20 63 6f 64 65 20 70 72 6f 63 65 64 75 72 65 73 ┆AN procedures or code procedures┆ 0x0640…0660 20 74 6f 20 6f 63 63 75 70 79 20 61 20 0a 19 89 80 80 6d 69 6e 69 6d 75 6d 20 6e 75 6d 62 65 72 ┆ to occupy a minimum number┆ 0x0660…0673 20 6f 66 20 73 65 67 6d 65 6e 74 73 2e 0d 0a 0d 0a 0d 0a ┆ of segments. ┆ 0x0673…0676 FormFeed { 0x0673…0676 0c 80 e0 ┆ ┆ 0x0673…0676 } 0x0676…0680 0a a1 b0 32 2e 09 09 45 58 41 ┆ 2. EXA┆ 0x0680…06a0 4d 50 4c 45 3a 0d 0a 0d 0a 09 09 84 54 68 65 20 63 61 6c 6c 0d 0a 09 09 20 20 20 72 65 61 64 20 ┆MPLE: The call read ┆ 0x06a0…06c0 3d 20 63 6f 6d 70 72 65 73 73 6c 69 62 20 77 72 69 74 65 20 61 72 63 74 61 6e 20 6c 6e 20 61 72 ┆= compresslib write arctan ln ar┆ 0x06c0…06e0 63 73 69 6e 0d 0a 09 09 84 63 6f 6c 6c 65 63 74 73 20 69 6e 74 6f 20 6f 6e 65 20 73 69 6e 67 6c ┆csin collects into one singl┆ 0x06e0…0700 65 20 61 72 65 61 20 74 68 65 20 61 6c 67 6f 6c 20 6c 69 62 72 61 72 79 20 70 72 6f 63 65 64 75 ┆e area the algol library procedu┆ 0x0700…0720 72 65 73 20 0a 19 89 80 80 72 65 61 64 2c 20 77 72 69 74 65 2c 20 61 72 63 74 61 6e 2c 20 6c 6e ┆res read, write, arctan, ln┆ 0x0720…0740 20 61 6e 64 20 61 72 63 73 69 6e 20 61 6e 64 20 73 65 74 73 20 74 68 65 20 64 65 73 63 72 69 70 ┆ and arcsin and sets the descrip┆ 0x0740…0760 74 6f 72 73 20 6f 66 20 0a 19 89 80 80 74 68 65 73 65 20 70 72 6f 63 65 64 75 72 65 73 20 73 6f ┆tors of these procedures so┆ 0x0760…0780 20 74 68 61 74 20 74 68 65 79 20 6d 61 79 20 62 65 20 66 6f 75 6e 64 20 61 6e 64 20 61 63 63 65 ┆ that they may be found and acce┆ 0x0780…07a0 70 74 65 64 20 62 79 20 74 68 65 20 0a 19 89 80 80 41 4c 47 4f 4c 20 61 6e 64 20 46 4f 52 54 52 ┆pted by the ALGOL and FORTR┆ 0x07a0…07b3 41 4e 20 63 6f 6d 70 69 6c 65 72 73 2e 0d 0a 0d 0a 0d 0a ┆AN compilers. ┆ 0x07b3…07b6 FormFeed { 0x07b3…07b6 0c 80 f8 ┆ ┆ 0x07b3…07b6 } 0x07b6…07c0 0a a1 b0 33 2e 09 09 43 41 4c ┆ 3. CAL┆ 0x07c0…07e0 4c 3a 0d 0a 0d 0a 09 09 84 3c 63 6f 6c 6c 65 63 74 69 6f 6e 20 61 72 65 61 3e 20 3d 20 3c 63 6f ┆L: <collection area> = <co┆ 0x07e0…0800 6d 70 72 65 73 73 6c 69 62 3e 20 3c 73 3e 3c 70 72 6f 63 65 64 75 72 65 20 61 72 65 61 3e 0d 0a ┆mpresslib> <s><procedure area> ┆ 0x0800…0820 (4,) 09 09 3c 63 6f 6c 6c 65 63 74 69 6f 6e 20 61 72 65 61 3e 20 3a 3a 3d 20 3c 70 72 6f 63 65 64 75 ┆ <collection area> ::= <procedu┆ 0x0820…0840 72 65 20 61 72 65 61 3e 0d 0a 09 09 3c 70 72 6f 63 65 64 75 72 65 20 61 72 65 61 3e 20 3a 3a 3d ┆re area> <procedure area> ::=┆ 0x0840…0860 20 3c 6e 61 6d 65 3e 0d 0a 0d 0a 09 09 84 41 20 70 72 6f 63 65 64 75 72 65 20 61 72 65 61 20 69 ┆ <name> A procedure area i┆ 0x0860…0880 73 20 61 6e 20 61 72 65 61 20 65 6e 74 72 79 20 77 69 74 68 20 63 6f 6e 74 65 6e 74 20 34 2c 20 ┆s an area entry with content 4, ┆ 0x0880…08a0 61 6e 64 20 77 69 74 68 20 0a 19 89 80 80 6c 65 6e 67 74 68 20 3e 20 30 2e 0d 0a 09 09 84 54 68 ┆and with length > 0. Th┆ 0x08a0…08c0 65 20 69 6e 74 65 72 76 61 6c 73 20 6f 66 20 74 68 65 20 70 72 6f 63 65 64 75 72 65 20 61 72 65 ┆e intervals of the procedure are┆ 0x08c0…08e0 61 73 20 6d 75 73 74 20 62 65 20 65 71 75 61 6c 20 74 6f 20 74 68 65 20 0a 19 89 80 80 63 61 74 ┆as must be equal to the cat┆ 0x08e0…0900 61 6c 6f 67 20 62 61 73 65 20 6f 66 20 74 68 65 20 70 72 6f 63 65 73 73 2c 20 77 68 69 63 68 20 ┆alog base of the process, which ┆ 0x0900…0920 6d 75 73 74 20 62 65 20 63 6f 6e 74 61 69 6e 65 64 20 69 6e 20 6f 72 20 62 65 20 0a 19 89 80 80 ┆must be contained in or be ┆ 0x0920…0940 65 71 75 61 6c 20 74 6f 20 74 68 65 20 73 74 61 6e 64 61 72 64 20 69 6e 74 65 72 76 61 6c 20 6f ┆equal to the standard interval o┆ 0x0940…0954 66 20 74 68 65 20 70 72 6f 63 65 73 73 2e 0d 0a 0d 0a 0d 0a ┆f the process. ┆ 0x0954…0957 FormFeed { 0x0954…0957 0c 81 9c ┆ ┆ 0x0954…0957 } 0x0957…0960 0a a1 b0 34 2e 09 09 46 55 ┆ 4. FU┆ 0x0960…0980 4e 43 54 49 4f 4e 3a 0d 0a 0d 0a 09 09 84 54 68 65 20 63 6f 6e 74 65 6e 74 73 20 6f 66 20 74 68 ┆NCTION: The contents of th┆ 0x0980…09a0 65 20 63 6f 6c 6c 65 63 74 69 6f 6e 20 61 72 65 61 20 69 73 20 65 78 61 6d 69 6e 65 64 20 73 6f ┆e collection area is examined so┆ 0x09a0…09c0 20 74 68 61 74 20 69 74 20 69 73 20 0a 19 89 80 80 6b 6e 6f 77 6e 20 68 6f 77 20 6d 75 63 68 20 ┆ that it is known how much ┆ 0x09c0…09e0 73 70 61 63 65 20 74 68 65 20 63 6f 64 65 20 61 6e 64 20 74 68 65 20 65 78 74 65 72 6e 61 6c 20 ┆space the code and the external ┆ 0x09e0…0a00 6c 69 73 74 20 74 61 6b 65 20 75 70 20 69 6e 20 0a 19 89 80 80 74 68 65 20 61 72 65 61 2e 20 54 ┆list take up in the area. T┆ 0x0a00…0a20 (5,) 68 65 6e 20 74 68 65 20 70 72 6f 63 65 64 75 72 65 20 61 72 65 61 73 20 6f 6e 20 74 68 65 20 72 ┆hen the procedure areas on the r┆ 0x0a20…0a40 69 67 68 74 20 68 61 6e 64 20 73 69 64 65 20 61 72 65 20 0a 19 89 80 80 73 63 61 6e 6e 65 64 20 ┆ight hand side are scanned ┆ 0x0a40…0a60 66 72 6f 6d 20 6c 65 66 74 20 74 6f 20 72 69 67 68 74 20 61 6e 64 20 74 68 65 69 72 20 63 6f 64 ┆from left to right and their cod┆ 0x0a60…0a80 65 20 61 6e 64 20 65 78 74 65 72 6e 61 6c 20 6c 69 73 74 73 20 0a 19 89 80 80 61 72 65 20 70 6c ┆e and external lists are pl┆ 0x0a80…0aa0 61 63 65 64 20 6f 6e 65 20 61 66 74 65 72 20 74 68 65 20 6f 74 68 65 72 20 61 73 20 74 69 67 68 ┆aced one after the other as tigh┆ 0x0aa0…0ac0 74 20 61 73 20 70 6f 73 73 69 62 6c 65 20 61 66 74 65 72 20 74 68 65 20 0a 19 89 80 80 65 78 74 ┆t as possible after the ext┆ 0x0ac0…0ae0 65 72 6e 61 6c 20 6c 69 73 74 20 61 6e 64 20 74 68 65 20 63 6f 64 65 20 6f 66 20 74 68 65 20 63 ┆ernal list and the code of the c┆ 0x0ae0…0b00 6f 6c 6c 65 63 74 69 6f 6e 20 61 72 65 61 2e 20 49 66 20 6e 65 63 65 73 73 61 72 79 20 0a 19 89 ┆ollection area. If necessary ┆ 0x0b00…0b20 80 80 74 68 65 20 63 6f 6c 6c 65 63 74 69 6f 6e 20 61 72 65 61 20 69 73 20 65 78 74 65 6e 64 65 ┆ the collection area is extende┆ 0x0b20…0b40 64 20 61 73 20 74 68 65 20 70 72 6f 63 65 73 73 69 6e 67 20 70 72 6f 63 65 65 64 73 2e 20 0a 19 ┆d as the processing proceeds. ┆ 0x0b40…0b60 89 80 80 50 61 72 61 6d 65 74 65 72 73 20 6e 6f 74 20 61 63 63 65 70 74 65 64 20 69 6e 20 74 68 ┆ Parameters not accepted in th┆ 0x0b60…0b80 69 73 20 70 68 61 73 65 20 61 72 65 20 64 72 6f 70 70 65 64 20 69 6e 20 74 68 65 20 63 6f 6d 80 ┆is phase are dropped in the com ┆ 0x0b80…0ba0 0a 19 89 80 80 70 72 65 73 73 69 6f 6e 2e 20 57 68 65 6e 20 61 6c 6c 20 70 72 6f 63 65 64 75 72 ┆ pression. When all procedur┆ 0x0ba0…0bc0 65 20 61 72 65 61 73 20 68 61 76 65 20 62 65 65 6e 20 63 6f 6c 6c 65 63 74 65 64 2c 20 74 68 65 ┆e areas have been collected, the┆ 0x0bc0…0be0 20 0a 19 89 80 80 61 63 63 65 70 74 65 64 20 61 72 65 61 73 20 61 72 65 20 72 65 6d 6f 76 65 64 ┆ accepted areas are removed┆ 0x0be0…0c00 20 61 6e 64 20 74 68 65 20 70 72 6f 63 65 64 75 72 65 73 20 61 72 65 20 64 65 73 63 72 69 62 65 ┆ and the procedures are describe┆ 0x0c00…0c20 (6,) 64 20 61 73 20 0a 19 89 80 80 73 68 61 72 65 64 20 6d 61 69 6e 20 65 6e 74 72 69 65 73 20 28 73 ┆d as shared main entries (s┆ 0x0c20…0c40 65 65 20 74 68 65 20 61 70 70 65 6e 64 69 78 29 2c 20 69 2e 65 2e 20 74 68 65 20 63 6f 6e 74 65 ┆ee the appendix), i.e. the conte┆ 0x0c40…0c60 6e 74 20 62 65 80 0a 19 89 80 80 63 6f 6d 65 73 20 33 32 20 2b 20 66 69 72 73 74 20 73 65 67 6d ┆nt be comes 32 + first segm┆ 0x0c60…0c80 65 6e 74 20 69 6e 20 74 68 65 20 63 6f 6c 6c 65 63 74 69 6f 6e 20 61 72 65 61 2c 20 61 6e 64 20 ┆ent in the collection area, and ┆ 0x0c80…0ca0 74 68 65 20 6d 6f 64 65 20 0a 19 89 80 80 6b 69 6e 64 20 62 65 63 6f 6d 65 73 20 62 73 2e 0d 0a ┆the mode kind becomes bs. ┆ 0x0ca0…0cc0 09 09 50 6f 73 73 69 62 6c 65 20 73 75 62 20 65 6e 74 72 69 65 73 20 74 6f 20 74 68 65 20 70 72 ┆ Possible sub entries to the pr┆ 0x0cc0…0ce0 6f 63 65 64 75 72 65 20 61 72 65 61 73 20 61 72 65 20 6e 6f 74 20 63 68 61 6e 67 65 64 2e 0d 0a ┆ocedure areas are not changed. ┆ 0x0ce0…0ce4 0d 0a 0d 0a ┆ ┆ 0x0ce4…0ce7 FormFeed { 0x0ce4…0ce7 0c 81 d8 ┆ ┆ 0x0ce4…0ce7 } 0x0ce7…0d00 0a a1 b0 35 2e 09 09 53 54 4f 52 41 47 45 20 52 45 51 55 49 52 45 4d 45 4e ┆ 5. STORAGE REQUIREMEN┆ 0x0d00…0d20 54 53 0d 0a 0d 0a 09 09 84 39 30 30 20 68 61 6c 66 77 6f 72 64 73 20 2b 20 72 6f 6f 6d 20 66 6f ┆TS 900 halfwords + room fo┆ 0x0d20…0d40 72 20 46 50 20 2b 20 72 6f 6f 6d 20 66 6f 72 20 74 68 65 20 6c 61 72 67 65 73 74 20 65 78 74 65 ┆r FP + room for the largest exte┆ 0x0d40…0d5a 72 6e 61 6c 20 0a 19 89 80 80 70 72 6f 63 65 64 75 72 65 2e 0d 0a 0d 0a 0d 0a ┆rnal procedure. ┆ 0x0d5a…0d5d FormFeed { 0x0d5a…0d5d 0c 80 c8 ┆ ┆ 0x0d5a…0d5d } 0x0d5d…0d60 0a a1 b0 ┆ ┆ 0x0d60…0d80 36 2e 09 09 45 52 52 4f 52 20 4d 45 53 53 41 47 45 53 2e 0d 0a 0d 0a 09 09 84 41 6c 6c 20 65 72 ┆6. ERROR MESSAGES. All er┆ 0x0d80…0da0 72 6f 72 20 6d 65 73 73 61 67 65 73 20 68 61 76 65 20 74 68 65 20 66 6f 6c 6c 6f 77 69 6e 67 20 ┆ror messages have the following ┆ 0x0da0…0dc0 66 6f 72 6d 3a 0d 0a 09 09 09 2a 2a 2a 63 6f 6d 70 72 65 73 73 6c 69 62 20 3c 70 61 72 61 6d 3e ┆form: ***compresslib <param>┆ 0x0dc0…0de0 20 3c 66 75 72 74 68 65 72 20 65 78 70 6c 61 6e 61 74 69 6f 6e 3e 0d 0a 09 09 84 41 66 74 65 72 ┆ <further explanation> After┆ 0x0de0…0e00 20 61 6e 20 65 72 72 6f 72 20 6d 65 73 73 61 67 65 20 6f 66 20 74 68 69 73 20 66 6f 72 6d 2c 20 ┆ an error message of this form, ┆ 0x0e00…0e20 (7,) 74 68 65 20 73 74 61 6e 64 61 72 64 20 61 63 74 69 6f 6e 73 20 61 72 65 20 0a 19 89 80 80 61 73 ┆the standard actions are as┆ 0x0e20…0e40 20 66 6f 6c 6c 6f 77 73 3a 0d 0a 09 09 84 49 66 20 3c 70 61 72 61 6d 3e 20 69 73 20 61 62 73 65 ┆ follows: If <param> is abse┆ 0x0e40…0e60 6e 74 20 6f 72 20 69 74 20 69 73 20 74 68 65 20 6e 61 6d 65 20 6f 66 20 74 68 65 20 63 6f 6c 6c ┆nt or it is the name of the coll┆ 0x0e60…0e80 65 63 74 69 6f 6e 20 61 72 65 61 2c 20 0a 19 89 80 80 74 68 65 20 70 72 6f 67 72 61 6d 20 74 65 ┆ection area, the program te┆ 0x0e80…0ea0 72 6d 69 6e 61 74 65 73 20 69 6d 6d 65 64 69 61 74 65 6c 79 2e 20 4e 6f 6e 65 20 6f 66 20 74 68 ┆rminates immediately. None of th┆ 0x0ea0…0ec0 65 20 70 72 6f 63 65 64 75 72 65 20 61 72 65 61 73 20 0a 19 89 80 80 74 6f 20 74 68 65 20 72 69 ┆e procedure areas to the ri┆ 0x0ec0…0ee0 67 68 74 20 77 69 6c 6c 20 62 65 20 63 68 61 6e 67 65 64 2e 0d 0a 09 09 84 49 66 20 3c 70 61 72 ┆ght will be changed. If <par┆ 0x0ee0…0f00 61 6d 3e 20 69 73 20 6f 6e 65 20 6f 66 20 74 68 65 20 72 69 67 68 74 20 68 61 6e 64 20 70 61 72 ┆am> is one of the right hand par┆ 0x0f00…0f20 61 6d 65 74 65 72 73 2c 20 74 68 69 73 20 70 61 72 61 6d 65 74 65 72 20 0a 19 89 80 80 69 73 20 ┆ameters, this parameter is ┆ 0x0f20…0f40 64 72 6f 70 70 65 64 20 66 72 6f 6d 20 74 68 65 20 63 6f 6d 70 72 65 73 73 69 6f 6e 2c 20 62 75 ┆dropped from the compression, bu┆ 0x0f40…0f60 74 20 74 68 65 20 6f 74 68 65 72 20 70 61 72 61 6d 65 74 65 72 73 20 77 69 6c 6c 20 0a 19 89 80 ┆t the other parameters will ┆ 0x0f60…0f80 80 6e 6f 74 20 62 65 20 61 66 66 65 63 74 65 64 2e 0d 0a 0d 0a 09 09 46 75 72 74 68 65 72 20 65 ┆ not be affected. Further e┆ 0x0f80…0fa0 78 70 6c 61 6e 61 74 69 6f 6e 20 6d 61 79 20 62 65 3a 0d 0a 0d 0a 09 09 63 6f 6e 6e 65 63 74 20 ┆xplanation may be: connect ┆ 0x0fa0…0fc0 65 72 72 6f 72 3a 20 20 20 20 20 20 84 54 68 65 20 61 72 65 61 20 63 6f 75 6c 64 20 6e 6f 74 20 ┆error: The area could not ┆ 0x0fc0…0fe0 62 65 20 63 6f 6e 6e 65 63 74 65 64 20 66 6f 72 20 69 6e 70 75 74 20 0a 19 9d 80 80 6f 72 20 6f ┆be connected for input or o┆ 0x0fe0…1000 75 74 70 75 74 2e 20 54 68 65 20 72 65 61 73 6f 6e 20 6d 61 79 20 62 65 20 74 68 61 74 20 69 74 ┆utput. The reason may be that it┆ 0x1000…1020 (8,) 20 69 73 20 0a 19 9d 80 80 72 65 73 65 72 76 65 64 20 66 6f 72 20 6f 75 74 70 75 74 20 62 79 20 ┆ is reserved for output by ┆ 0x1020…1040 61 6e 6f 74 68 65 72 20 70 72 6f 63 65 73 73 2e 0d 0a 0d 0a 09 09 75 6e 6b 6e 6f 77 6e 20 20 20 ┆another process. unknown ┆ 0x1040…1060 20 20 20 3a 20 20 20 20 20 20 54 68 65 20 61 72 65 61 20 63 6f 75 6c 64 20 6e 6f 74 20 62 65 20 ┆ : The area could not be ┆ 0x1060…1080 66 6f 75 6e 64 2e 0d 0a 0d 0a 09 09 69 6e 74 65 72 76 61 6c 20 20 20 20 20 3a 20 20 20 20 20 20 ┆found. interval : ┆ 0x1080…10a0 84 54 68 65 20 69 6e 74 65 72 76 61 6c 20 6f 66 20 74 68 65 20 70 72 6f 63 65 64 75 72 65 20 61 ┆ The interval of the procedure a┆ 0x10a0…10c0 72 65 61 20 69 73 20 6e 6f 74 20 0a 19 9d 80 80 65 71 75 61 6c 20 74 6f 20 74 68 65 20 69 6e 74 ┆rea is not equal to the int┆ 0x10c0…10e0 65 72 76 61 6c 20 6f 66 20 74 68 65 20 63 6f 6c 6c 65 63 74 69 6f 6e 20 0a 19 9d 80 80 61 72 65 ┆erval of the collection are┆ 0x10e0…1100 61 2e 0d 0a 0d 0a 09 09 63 6f 6e 74 65 6e 74 20 20 20 20 20 20 3a 20 20 20 20 20 20 84 54 68 65 ┆a. content : The┆ 0x1100…1120 20 70 61 72 61 6d 65 74 65 72 20 64 6f 65 73 20 6e 6f 74 20 64 65 6e 6f 74 65 20 61 6e 20 65 78 ┆ parameter does not denote an ex┆ 0x1120…1140 74 65 72 6e 61 6c 20 0a 19 9d 80 80 70 72 6f 63 65 64 75 72 65 2e 0d 0a 0d 0a 09 09 6e 6f 74 20 ┆ternal procedure. not ┆ 0x1140…1160 61 72 65 61 20 20 20 20 20 3a 20 20 20 20 20 20 84 54 68 65 20 70 61 72 61 6d 65 74 65 72 20 64 ┆area : The parameter d┆ 0x1160…1180 6f 65 73 20 6e 6f 74 20 64 65 6e 6f 74 65 20 61 6e 20 61 72 65 61 20 28 77 69 74 68 20 0a 19 9d ┆oes not denote an area (with ┆ 0x1180…11a0 80 80 6c 65 6e 67 74 68 20 3e 20 30 29 2e 0d 0a 0d 0a 09 09 69 6e 74 65 72 76 61 6c 73 20 20 20 ┆ length > 0). intervals ┆ 0x11a0…11c0 20 3a 20 20 20 20 20 20 84 54 68 65 20 69 6e 74 65 72 76 61 6c 20 6f 66 20 74 68 65 20 63 6f 6c ┆ : The interval of the col┆ 0x11c0…11e0 6c 65 63 74 69 6f 6e 20 61 72 65 61 20 69 73 20 6e 6f 74 20 0a 19 9d 80 80 65 71 75 61 6c 20 74 ┆lection area is not equal t┆ 0x11e0…1200 6f 20 74 68 65 20 63 61 74 61 6c 6f 67 20 62 61 73 65 20 6f 66 20 74 68 65 20 70 72 6f 63 65 73 ┆o the catalog base of the proces┆ 0x1200…1220 (9,) 73 20 6f 72 20 0a 19 9d 80 80 74 68 65 20 63 61 74 61 80 6c 6f 67 20 62 61 73 65 20 69 73 20 6e ┆s or the cata log base is n┆ 0x1220…1240 6f 74 20 63 6f 6e 74 61 69 6e 65 64 20 69 6e 20 6f 72 20 0a 19 9d 80 80 65 71 75 61 6c 20 74 6f ┆ot contained in or equal to┆ 0x1240…1260 20 74 68 65 20 73 74 61 6e 64 61 72 64 20 69 6e 74 65 72 76 61 6c 20 6f 66 20 74 68 65 20 0a 19 ┆ the standard interval of the ┆ 0x1260…126f 9d 80 80 70 72 6f 63 65 73 73 2e 0d 0a 0d 0a ┆ process. ┆ 0x126f…1272 FormFeed { 0x126f…1272 0c 83 bc ┆ ┆ 0x126f…1272 } 0x1272…1280 0a 09 09 6e 6f 20 63 6f 6c 6c 65 63 74 69 ┆ no collecti┆ 0x1280…12a0 6f 6e 20 61 72 65 61 3a 20 54 68 65 20 70 72 6f 67 72 61 6d 20 63 61 6c 6c 20 68 61 73 20 6e 6f ┆on area: The program call has no┆ 0x12a0…12c0 20 6c 65 66 74 20 68 61 6e 64 20 73 69 64 65 2e 0d 0a 0d 0a 09 09 74 72 61 6e 73 70 6f 72 74 20 ┆ left hand side. transport ┆ 0x12c0…12e0 65 72 72 6f 72 20 20 20 3a 20 84 49 6e 70 75 74 20 66 72 6f 6d 20 61 20 70 72 6f 63 65 64 75 72 ┆error : Input from a procedur┆ 0x12e0…1300 65 20 61 72 65 61 20 6f 72 20 6f 75 74 70 75 74 20 74 6f 20 0a 19 9d 80 80 74 68 65 20 63 6f 6c ┆e area or output to the col┆ 0x1300…1320 6c 65 63 74 69 6f 6e 20 61 72 65 61 20 69 73 20 69 6d 70 6f 73 73 69 62 6c 65 2e 20 55 73 75 61 ┆lection area is impossible. Usua┆ 0x1320…1340 6c 6c 79 20 0a 19 9d 80 80 62 65 63 61 75 73 65 20 6f 66 20 63 6c 61 69 6d 73 20 65 78 63 65 65 ┆lly because of claims excee┆ 0x1340…1360 64 65 64 20 6f 72 20 62 73 5f 66 61 75 6c 74 2e 0d 0a 0d 0a 09 09 70 72 6f 63 65 73 73 20 74 6f ┆ded or bs_fault. process to┆ 0x1360…1380 6f 20 73 6d 61 6c 6c 20 3a 20 84 49 74 20 69 73 20 69 6d 70 6f 73 73 69 62 6c 65 20 74 6f 20 68 ┆o small : It is impossible to h┆ 0x1380…13a0 6f 6c 64 20 74 68 65 20 65 6e 74 69 72 65 20 70 72 6f 63 65 2d 0a 19 9d 80 80 64 75 72 65 20 69 ┆old the entire proce- dure i┆ 0x13a0…13c0 6e 20 74 68 65 20 70 72 6f 63 65 73 73 20 61 72 65 61 2e 20 49 66 20 70 61 72 61 6d 20 69 73 20 ┆n the process area. If param is ┆ 0x13c0…13e0 74 68 65 20 0a 19 9d 80 80 63 6f 6c 6c 65 63 74 69 6f 6e 20 61 72 65 61 2c 20 69 74 20 69 73 20 ┆the collection area, it is ┆ 0x13e0…1400 69 6d 70 6f 73 73 69 62 6c 65 20 74 6f 20 68 6f 6c 64 20 0a 19 9d 80 80 74 68 65 20 65 78 74 65 ┆impossible to hold the exte┆ 0x1400…1420 (10,) 72 6e 61 6c 20 6c 69 73 74 20 69 6e 20 74 68 65 20 70 72 6f 63 65 73 73 20 61 72 65 61 2e 0d 0a ┆rnal list in the process area. ┆ 0x1420…1440 0d 0a 09 09 74 6f 6f 20 6d 61 6e 79 20 73 65 67 6d 65 6e 74 73 20 3a 20 84 54 68 65 20 63 6f 6c ┆ too many segments : The col┆ 0x1440…1460 6c 65 63 74 69 6f 6e 20 61 72 65 61 20 68 61 73 20 65 78 63 65 65 64 65 64 20 34 30 36 33 20 0a ┆lection area has exceeded 4063 ┆ 0x1460…1473 19 9d 80 80 73 65 67 6d 65 6e 74 73 2e 0d 0a 0d 0a 0d 0a ┆ segments. ┆ 0x1473…1476 FormFeed { 0x1473…1476 0c 81 b4 ┆ ┆ 0x1473…1476 } 0x1476…1480 0a a1 b0 41 2e 09 09 41 50 50 ┆ A. APP┆ 0x1480…14a0 45 4e 44 49 58 3a 0d 0a 0d 0a 09 09 84 49 6e 20 74 68 65 20 46 50 2d 73 79 73 74 65 6d 2c 20 66 ┆ENDIX: In the FP-system, f┆ 0x14a0…14c0 69 6c 65 20 64 65 73 63 72 69 70 74 6f 72 73 20 61 72 65 20 75 73 75 61 6c 6c 79 20 65 69 74 68 ┆ile descriptors are usually eith┆ 0x14c0…14e0 65 72 20 61 72 65 61 20 0a 19 89 80 80 64 65 73 63 72 69 70 74 6f 72 73 20 6f 72 20 66 69 6c 65 ┆er area descriptors or file┆ 0x14e0…1500 20 64 65 73 63 72 69 70 74 6f 72 73 20 64 65 73 63 72 69 62 69 6e 67 20 28 73 75 62 29 66 69 6c ┆ descriptors describing (sub)fil┆ 0x1500…1520 65 73 20 69 6e 20 61 20 62 73 20 0a 19 89 80 80 61 72 65 61 20 6f 72 20 70 65 72 69 70 68 65 72 ┆es in a bs area or peripher┆ 0x1520…1540 61 6c 20 66 69 6c 65 2e 20 55 73 75 61 6c 6c 79 20 6f 6e 6c 79 20 6f 6e 65 20 6c 65 76 65 6c 20 ┆al file. Usually only one level ┆ 0x1540…1560 6f 66 20 69 6e 64 69 72 65 63 74 20 0a 19 89 80 80 64 65 73 63 72 69 70 74 69 6f 6e 20 6f 66 20 ┆of indirect description of ┆ 0x1560…1580 61 72 65 61 73 20 69 73 20 61 6c 6c 6f 76 65 64 2e 20 46 6f 72 20 65 78 74 65 72 6e 61 6c 20 70 ┆areas is alloved. For external p┆ 0x1580…15a0 72 6f 63 65 64 75 72 65 73 20 74 6f 20 0a 19 89 80 80 41 4c 47 4f 4c 20 6f 72 20 46 4f 52 54 52 ┆rocedures to ALGOL or FORTR┆ 0x15a0…15c0 41 4e 20 70 72 6f 67 72 61 6d 73 20 68 6f 77 65 76 65 72 2c 20 74 77 6f 20 6c 65 76 65 6c 73 20 ┆AN programs however, two levels ┆ 0x15c0…15e0 6f 66 20 69 6e 64 69 72 65 63 74 20 0a 19 89 80 80 64 65 73 63 72 69 70 74 69 6f 6e 20 6f 66 20 ┆of indirect description of ┆ 0x15e0…1600 61 72 65 61 73 20 61 72 65 20 61 6c 6c 6f 77 65 64 2e 20 41 6e 20 65 78 74 65 72 6e 61 6c 20 70 ┆areas are allowed. An external p┆ 0x1600…1620 (11,) 72 6f 63 65 64 75 72 65 20 6d 61 79 20 62 65 20 0a 19 89 80 80 64 65 73 63 72 69 62 65 64 20 69 ┆rocedure may be described i┆ 0x1620…1640 6e 20 74 68 65 20 63 61 74 61 6c 6f 67 20 62 79 20 74 68 65 20 66 6f 6c 6c 6f 77 69 6e 67 20 64 ┆n the catalog by the following d┆ 0x1640…1660 65 73 63 72 69 70 74 6f 72 73 0d 0a 0d 0a 09 09 6d 61 69 6e 20 65 6e 74 72 79 3a 09 09 6c 65 6e ┆escriptors main entry: len┆ 0x1660…1680 67 74 68 20 3e 20 30 2c 09 63 6f 6e 74 65 6e 74 20 3d 20 34 0d 0a 09 09 73 68 61 72 65 64 20 65 ┆gth > 0, content = 4 shared e┆ 0x1680…16a0 6e 74 72 79 3a 09 09 6c 65 6e 67 74 68 20 3d 20 62 73 2c 09 63 6f 6e 74 65 6e 74 20 3d 20 34 0d ┆ntry: length = bs, content = 4 ┆ 0x16a0…16c0 0a 09 09 73 68 61 72 65 64 20 6d 61 69 6e 20 65 6e 74 72 79 3a 09 6c 65 6e 67 74 68 20 3d 20 62 ┆ shared main entry: length = b┆ 0x16c0…16e0 73 2c 09 63 6f 6e 74 65 6e 74 20 3e 3d 20 33 32 0d 0a 0d 0a 09 09 84 41 20 73 68 61 72 65 64 20 ┆s, content >= 32 A shared ┆ 0x16e0…1700 65 6e 74 72 79 20 77 69 6c 6c 20 65 69 74 68 65 72 20 68 61 76 65 20 74 68 65 20 6e 61 6d 65 20 ┆entry will either have the name ┆ 0x1700…1720 6f 66 20 61 20 6d 61 69 6e 20 65 6e 74 72 79 20 6f 72 20 61 20 0a 19 89 80 80 73 68 61 72 65 64 ┆of a main entry or a shared┆ 0x1720…1740 20 6d 61 69 6e 20 65 6e 74 72 79 20 69 6e 20 69 74 73 20 64 6f 63 75 6d 65 6e 74 20 6e 61 6d 65 ┆ main entry in its document name┆ 0x1740…1760 20 66 69 65 6c 64 2e 0d 0a 09 09 84 41 20 73 68 61 72 65 64 20 6d 61 69 6e 20 65 6e 74 72 79 20 ┆ field. A shared main entry ┆ 0x1760…1780 68 61 73 20 74 68 65 20 6e 61 6d 65 20 6f 66 20 61 20 6d 61 69 6e 20 65 6e 74 72 79 20 28 74 68 ┆has the name of a main entry (th┆ 0x1780…17a0 65 20 63 6f 6c 6c 65 63 2d 0a 19 89 80 80 74 69 6f 6e 20 61 72 65 61 29 20 69 6e 20 69 74 73 20 ┆e collec- tion area) in its ┆ 0x17a0…17c0 64 6f 63 75 6d 65 6e 74 20 6e 61 6d 65 20 66 69 65 6c 64 2e 0d 0a 09 09 84 54 68 65 20 76 61 6c ┆document name field. The val┆ 0x17c0…17e0 75 65 20 6f 66 20 74 68 65 20 63 6f 6e 74 65 6e 74 20 66 69 65 6c 64 20 69 73 20 73 65 67 6d 65 ┆ue of the content field is segme┆ 0x17e0…1800 6e 74 20 6e 6f 2e 20 6f 66 20 65 78 74 65 72 6e 61 6c 20 6c 69 73 74 20 0a 19 89 80 80 2b 20 33 ┆nt no. of external list + 3┆ 0x1800…1820 (12,) 32 2e 0d 0a 0d 0a 1a 1a 0a 0a 1a 20 6c 69 73 74 20 0a 19 89 80 80 2b 20 33 32 2e 0d 0a 0d 0a 0a ┆2. list + 32. ┆ 0x1820…1840 1a 0d 0a 0a 1a 73 74 69 6c 65 73 20 63 61 6e 20 62 65 20 72 65 61 64 20 28 6d 61 78 2e 20 32 35 ┆ stiles can be read (max. 25┆ 0x1840…1860 20 4b 62 79 74 65 73 29 2e 20 0a 19 89 80 80 54 68 65 20 63 6f 6e 74 65 6e 74 73 20 6f 66 20 74 ┆ Kbytes). The contents of t┆ 0x1860…1880 68 65 20 66 69 6c 65 20 61 72 65 20 72 65 61 64 20 69 6e 74 6f 20 74 68 65 20 65 64 69 74 20 62 ┆he file are read into the edit b┆