Home » Personal collection » Acorn DFS disks » dfs_box03_disk13_bcpl_calc.scp » EXHELP
EXHELP
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 DFS disks » dfs_box03_disk13_bcpl_calc.scp |
Filename: | EXHELP |
Read OK: | ✔ |
File size: | 0B4A bytes |
Load address: | 23BC4 |
Exec address: | 0006 |
File contents
BCPL CALCULATIONS PACKAGE EXAMPLES ================================== This file describes the example programs provided with the BCPL Calculations Package. All programs are provided in both source and CINTCODE form. Users are encouraged to modify the source provided to alter or extend the programs. EXFLC & EXFXC ============= These two programs use the floating point (EXFLC) and fixed point (EXFXC) procedures to simulate a pocket calculator. Calculations are entered in they same way as they are on a calculator - thus to add 1.5 to 3.6 enter '1.5+3.6='. Note that RETURN may be used instead of '=', ';' instead of '+' and ':' instead of '*'. The function keys are used to provide mathematical functions such as sine and square root. In the case of EXFLC function key 0 toggles between two alternate sets of uses for function keys 1 to 9. The source is contained in 7 files: EXCLHDR is a header file containing global and manifest declarations. EXCL1B contains START and various utility procedures common to both programs. EXCL2B contains other procedures common to both programs. EXCLFLB contains procedures to handle the display which are specific to EXFLC. EXCLNLB contains procedures to handle the function keys which are specific to EXFLC. EXCLFXB contains procedures to handle the display which are specific to EXFXC. EXCLNXB contains procedures to handle the function keys which are specific to EXFXC. To amend EXFLC: (1) Edit the source file(s). (2) Compile EXCL1B, EXCL2B, EXCLNLB and EXCLFLB. Note that the 'MAX' option must be used when compiling EXCL1B and EXCL2B (e.g. BCPL EXCL1B EXCL1 MAX). (3) JOINCIN the four CINTCODE files from the compilations with FLARITH, FLIO, FLTRIG and FLEXP to a temporary file. (4) Run NEEDCIN on the temporary file with library file LIB to produce EXFLC. To amend EXFXC: (1) Edit the source file(s). (2) Compile EXCL1B, EXCL2B, EXCLNXB and EXCLFXB. Note that the 'MAX' option must be used when compiling EXCL1B and EXCL2B (e.g. BCPL EXCL1B EXCL1 MAX). (3) JOINCIN the four CINTCODE files from the compilations with FXARITH, FXIO and FXEXP to a temporary file. (4) Run NEEDCIN on the temporary file with library file LIB to produce EXFXC. EXSPIR ====== This program uses the fast integer routines to draw a spiral. It is based on the program 'SPIRAL1' in 'Creative Graphics on the BBC Microcomputer' by J Cownie published by Acornsoft Ltd. The source is in file EXSPIRB. If the source is changed it should be recompiled then JOINCIN used to join it with INTCALC and finally NEEDCIN used to extract the procedures needed from LIB.
00000000 42 43 50 4c 20 43 41 4c 43 55 4c 41 54 49 4f 4e |BCPL CALCULATION| 00000010 53 20 50 41 43 4b 41 47 45 20 45 58 41 4d 50 4c |S PACKAGE EXAMPL| 00000020 45 53 0d 0a 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d |ES..============| 00000030 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d |================| 00000040 3d 3d 3d 3d 3d 3d 0d 0a 0d 0a 54 68 69 73 20 66 |======....This f| 00000050 69 6c 65 20 64 65 73 63 72 69 62 65 73 20 74 68 |ile describes th| 00000060 65 20 65 78 61 6d 70 6c 65 0d 0a 70 72 6f 67 72 |e example..progr| 00000070 61 6d 73 20 70 72 6f 76 69 64 65 64 20 77 69 74 |ams provided wit| 00000080 68 20 74 68 65 20 42 43 50 4c 0d 0a 43 61 6c 63 |h the BCPL..Calc| 00000090 75 6c 61 74 69 6f 6e 73 20 50 61 63 6b 61 67 65 |ulations Package| 000000a0 2e 20 20 41 6c 6c 20 70 72 6f 67 72 61 6d 73 0d |. All programs.| 000000b0 0a 61 72 65 20 70 72 6f 76 69 64 65 64 20 69 6e |.are provided in| 000000c0 20 62 6f 74 68 20 73 6f 75 72 63 65 20 61 6e 64 | both source and| 000000d0 0d 0a 43 49 4e 54 43 4f 44 45 20 66 6f 72 6d 2e |..CINTCODE form.| 000000e0 20 20 55 73 65 72 73 20 61 72 65 20 65 6e 63 6f | Users are enco| 000000f0 75 72 61 67 65 64 20 74 6f 0d 0a 6d 6f 64 69 66 |uraged to..modif| 00000100 79 20 74 68 65 20 73 6f 75 72 63 65 20 70 72 6f |y the source pro| 00000110 76 69 64 65 64 20 74 6f 20 61 6c 74 65 72 20 6f |vided to alter o| 00000120 72 0d 0a 65 78 74 65 6e 64 20 74 68 65 20 70 72 |r..extend the pr| 00000130 6f 67 72 61 6d 73 2e 0d 0a 0d 0a 45 58 46 4c 43 |ograms.....EXFLC| 00000140 20 26 20 45 58 46 58 43 0d 0a 3d 3d 3d 3d 3d 3d | & EXFXC..======| 00000150 3d 3d 3d 3d 3d 3d 3d 0d 0a 0d 0a 54 68 65 73 65 |=======....These| 00000160 20 74 77 6f 20 70 72 6f 67 72 61 6d 73 20 75 73 | two programs us| 00000170 65 20 74 68 65 20 66 6c 6f 61 74 69 6e 67 0d 0a |e the floating..| 00000180 70 6f 69 6e 74 20 28 45 58 46 4c 43 29 20 61 6e |point (EXFLC) an| 00000190 64 20 66 69 78 65 64 20 70 6f 69 6e 74 20 28 45 |d fixed point (E| 000001a0 58 46 58 43 29 0d 0a 70 72 6f 63 65 64 75 72 65 |XFXC)..procedure| 000001b0 73 20 74 6f 20 73 69 6d 75 6c 61 74 65 20 61 20 |s to simulate a | 000001c0 70 6f 63 6b 65 74 0d 0a 63 61 6c 63 75 6c 61 74 |pocket..calculat| 000001d0 6f 72 2e 20 20 43 61 6c 63 75 6c 61 74 69 6f 6e |or. Calculation| 000001e0 73 20 61 72 65 20 65 6e 74 65 72 65 64 0d 0a 69 |s are entered..i| 000001f0 6e 20 74 68 65 79 20 73 61 6d 65 20 77 61 79 20 |n they same way | 00000200 61 73 20 74 68 65 79 20 61 72 65 20 6f 6e 20 61 |as they are on a| 00000210 0d 0a 63 61 6c 63 75 6c 61 74 6f 72 20 2d 20 74 |..calculator - t| 00000220 68 75 73 20 74 6f 20 61 64 64 20 31 2e 35 20 74 |hus to add 1.5 t| 00000230 6f 20 33 2e 36 0d 0a 65 6e 74 65 72 20 27 31 2e |o 3.6..enter '1.| 00000240 35 2b 33 2e 36 3d 27 2e 20 20 4e 6f 74 65 20 74 |5+3.6='. Note t| 00000250 68 61 74 20 52 45 54 55 52 4e 20 6d 61 79 0d 0a |hat RETURN may..| 00000260 62 65 20 75 73 65 64 20 69 6e 73 74 65 61 64 20 |be used instead | 00000270 6f 66 20 27 3d 27 2c 20 27 3b 27 20 69 6e 73 74 |of '=', ';' inst| 00000280 65 61 64 20 6f 66 0d 0a 27 2b 27 20 61 6e 64 20 |ead of..'+' and | 00000290 27 3a 27 20 69 6e 73 74 65 61 64 20 6f 66 20 27 |':' instead of '| 000002a0 2a 27 2e 0d 0a 0d 0a 54 68 65 20 66 75 6e 63 74 |*'.....The funct| 000002b0 69 6f 6e 20 6b 65 79 73 20 61 72 65 20 75 73 65 |ion keys are use| 000002c0 64 20 74 6f 20 70 72 6f 76 69 64 65 0d 0a 6d 61 |d to provide..ma| 000002d0 74 68 65 6d 61 74 69 63 61 6c 20 66 75 6e 63 74 |thematical funct| 000002e0 69 6f 6e 73 20 73 75 63 68 20 61 73 20 73 69 6e |ions such as sin| 000002f0 65 20 61 6e 64 0d 0a 73 71 75 61 72 65 20 72 6f |e and..square ro| 00000300 6f 74 2e 20 20 49 6e 20 74 68 65 20 63 61 73 65 |ot. In the case| 00000310 20 6f 66 20 45 58 46 4c 43 0d 0a 66 75 6e 63 74 | of EXFLC..funct| 00000320 69 6f 6e 20 6b 65 79 20 30 20 74 6f 67 67 6c 65 |ion key 0 toggle| 00000330 73 20 62 65 74 77 65 65 6e 20 74 77 6f 0d 0a 61 |s between two..a| 00000340 6c 74 65 72 6e 61 74 65 20 73 65 74 73 20 6f 66 |lternate sets of| 00000350 20 75 73 65 73 20 66 6f 72 20 66 75 6e 63 74 69 | uses for functi| 00000360 6f 6e 0d 0a 6b 65 79 73 20 31 20 74 6f 20 39 2e |on..keys 1 to 9.| 00000370 0d 0a 0d 0a 54 68 65 20 73 6f 75 72 63 65 20 69 |....The source i| 00000380 73 20 63 6f 6e 74 61 69 6e 65 64 20 69 6e 20 37 |s contained in 7| 00000390 20 66 69 6c 65 73 3a 0d 0a 0d 0a 45 58 43 4c 48 | files:....EXCLH| 000003a0 44 52 20 69 73 20 61 20 68 65 61 64 65 72 20 66 |DR is a header f| 000003b0 69 6c 65 20 63 6f 6e 74 61 69 6e 69 6e 67 0d 0a |ile containing..| 000003c0 20 20 20 20 20 20 20 20 67 6c 6f 62 61 6c 20 61 | global a| 000003d0 6e 64 20 6d 61 6e 69 66 65 73 74 0d 0a 20 20 20 |nd manifest.. | 000003e0 20 20 20 20 20 64 65 63 6c 61 72 61 74 69 6f 6e | declaration| 000003f0 73 2e 0d 0a 45 58 43 4c 31 42 20 20 63 6f 6e 74 |s...EXCL1B cont| 00000400 61 69 6e 73 20 53 54 41 52 54 20 61 6e 64 20 76 |ains START and v| 00000410 61 72 69 6f 75 73 0d 0a 20 20 20 20 20 20 20 20 |arious.. | 00000420 75 74 69 6c 69 74 79 20 70 72 6f 63 65 64 75 72 |utility procedur| 00000430 65 73 20 63 6f 6d 6d 6f 6e 20 74 6f 0d 0a 20 20 |es common to.. | 00000440 20 20 20 20 20 20 62 6f 74 68 20 70 72 6f 67 72 | both progr| 00000450 61 6d 73 2e 0d 0a 45 58 43 4c 32 42 20 20 63 6f |ams...EXCL2B co| 00000460 6e 74 61 69 6e 73 20 6f 74 68 65 72 20 70 72 6f |ntains other pro| 00000470 63 65 64 75 72 65 73 0d 0a 20 20 20 20 20 20 20 |cedures.. | 00000480 20 63 6f 6d 6d 6f 6e 20 74 6f 20 62 6f 74 68 20 | common to both | 00000490 70 72 6f 67 72 61 6d 73 2e 0d 0a 45 58 43 4c 46 |programs...EXCLF| 000004a0 4c 42 20 63 6f 6e 74 61 69 6e 73 20 70 72 6f 63 |LB contains proc| 000004b0 65 64 75 72 65 73 20 74 6f 20 68 61 6e 64 6c 65 |edures to handle| 000004c0 0d 0a 20 20 20 20 20 20 20 20 74 68 65 20 64 69 |.. the di| 000004d0 73 70 6c 61 79 20 77 68 69 63 68 20 61 72 65 20 |splay which are | 000004e0 73 70 65 63 69 66 69 63 0d 0a 20 20 20 20 20 20 |specific.. | 000004f0 20 20 74 6f 20 45 58 46 4c 43 2e 0d 0a 45 58 43 | to EXFLC...EXC| 00000500 4c 4e 4c 42 20 63 6f 6e 74 61 69 6e 73 20 70 72 |LNLB contains pr| 00000510 6f 63 65 64 75 72 65 73 20 74 6f 20 68 61 6e 64 |ocedures to hand| 00000520 6c 65 0d 0a 20 20 20 20 20 20 20 20 74 68 65 20 |le.. the | 00000530 66 75 6e 63 74 69 6f 6e 20 6b 65 79 73 20 77 68 |function keys wh| 00000540 69 63 68 20 61 72 65 0d 0a 20 20 20 20 20 20 20 |ich are.. | 00000550 20 73 70 65 63 69 66 69 63 20 74 6f 20 45 58 46 | specific to EXF| 00000560 4c 43 2e 0d 0a 45 58 43 4c 46 58 42 20 63 6f 6e |LC...EXCLFXB con| 00000570 74 61 69 6e 73 20 70 72 6f 63 65 64 75 72 65 73 |tains procedures| 00000580 20 74 6f 20 68 61 6e 64 6c 65 0d 0a 20 20 20 20 | to handle.. | 00000590 20 20 20 20 74 68 65 20 64 69 73 70 6c 61 79 20 | the display | 000005a0 77 68 69 63 68 20 61 72 65 20 73 70 65 63 69 66 |which are specif| 000005b0 69 63 0d 0a 20 20 20 20 20 20 20 20 74 6f 20 45 |ic.. to E| 000005c0 58 46 58 43 2e 0d 0a 45 58 43 4c 4e 58 42 20 63 |XFXC...EXCLNXB c| 000005d0 6f 6e 74 61 69 6e 73 20 70 72 6f 63 65 64 75 72 |ontains procedur| 000005e0 65 73 20 74 6f 20 68 61 6e 64 6c 65 0d 0a 20 20 |es to handle.. | 000005f0 20 20 20 20 20 20 74 68 65 20 66 75 6e 63 74 69 | the functi| 00000600 6f 6e 20 6b 65 79 73 20 77 68 69 63 68 20 61 72 |on keys which ar| 00000610 65 0d 0a 20 20 20 20 20 20 20 20 73 70 65 63 69 |e.. speci| 00000620 66 69 63 20 74 6f 20 45 58 46 58 43 2e 0d 0a 0d |fic to EXFXC....| 00000630 0a 54 6f 20 61 6d 65 6e 64 20 45 58 46 4c 43 3a |.To amend EXFLC:| 00000640 0d 0a 0d 0a 28 31 29 20 45 64 69 74 20 74 68 65 |....(1) Edit the| 00000650 20 73 6f 75 72 63 65 20 66 69 6c 65 28 73 29 2e | source file(s).| 00000660 0d 0a 0d 0a 28 32 29 20 43 6f 6d 70 69 6c 65 20 |....(2) Compile | 00000670 45 58 43 4c 31 42 2c 20 45 58 43 4c 32 42 2c 20 |EXCL1B, EXCL2B, | 00000680 45 58 43 4c 4e 4c 42 20 61 6e 64 0d 0a 20 20 20 |EXCLNLB and.. | 00000690 20 45 58 43 4c 46 4c 42 2e 20 20 4e 6f 74 65 20 | EXCLFLB. Note | 000006a0 74 68 61 74 20 74 68 65 20 27 4d 41 58 27 0d 0a |that the 'MAX'..| 000006b0 20 20 20 20 6f 70 74 69 6f 6e 20 6d 75 73 74 20 | option must | 000006c0 62 65 20 75 73 65 64 20 77 68 65 6e 20 63 6f 6d |be used when com| 000006d0 70 69 6c 69 6e 67 0d 0a 20 20 20 20 45 58 43 4c |piling.. EXCL| 000006e0 31 42 20 61 6e 64 20 45 58 43 4c 32 42 20 28 65 |1B and EXCL2B (e| 000006f0 2e 67 2e 20 42 43 50 4c 20 45 58 43 4c 31 42 0d |.g. BCPL EXCL1B.| 00000700 0a 20 20 20 20 45 58 43 4c 31 20 4d 41 58 29 2e |. EXCL1 MAX).| 00000710 0d 0a 0d 0a 28 33 29 20 4a 4f 49 4e 43 49 4e 20 |....(3) JOINCIN | 00000720 74 68 65 20 66 6f 75 72 20 43 49 4e 54 43 4f 44 |the four CINTCOD| 00000730 45 20 66 69 6c 65 73 0d 0a 20 20 20 20 66 72 6f |E files.. fro| 00000740 6d 20 74 68 65 20 63 6f 6d 70 69 6c 61 74 69 6f |m the compilatio| 00000750 6e 73 20 77 69 74 68 20 46 4c 41 52 49 54 48 2c |ns with FLARITH,| 00000760 0d 0a 20 20 20 20 46 4c 49 4f 2c 20 46 4c 54 52 |.. FLIO, FLTR| 00000770 49 47 20 61 6e 64 20 46 4c 45 58 50 20 74 6f 20 |IG and FLEXP to | 00000780 61 0d 0a 20 20 20 20 74 65 6d 70 6f 72 61 72 79 |a.. temporary| 00000790 20 66 69 6c 65 2e 0d 0a 0d 0a 28 34 29 20 52 75 | file.....(4) Ru| 000007a0 6e 20 4e 45 45 44 43 49 4e 20 6f 6e 20 74 68 65 |n NEEDCIN on the| 000007b0 20 74 65 6d 70 6f 72 61 72 79 20 66 69 6c 65 0d | temporary file.| 000007c0 0a 20 20 20 20 77 69 74 68 20 6c 69 62 72 61 72 |. with librar| 000007d0 79 20 66 69 6c 65 20 4c 49 42 20 74 6f 20 70 72 |y file LIB to pr| 000007e0 6f 64 75 63 65 0d 0a 20 20 20 20 45 58 46 4c 43 |oduce.. EXFLC| 000007f0 2e 0d 0a 0d 0a 54 6f 20 61 6d 65 6e 64 20 45 58 |.....To amend EX| 00000800 46 58 43 3a 0d 0a 0d 0a 28 31 29 20 45 64 69 74 |FXC:....(1) Edit| 00000810 20 74 68 65 20 73 6f 75 72 63 65 20 66 69 6c 65 | the source file| 00000820 28 73 29 2e 0d 0a 0d 0a 28 32 29 20 43 6f 6d 70 |(s).....(2) Comp| 00000830 69 6c 65 20 45 58 43 4c 31 42 2c 20 45 58 43 4c |ile EXCL1B, EXCL| 00000840 32 42 2c 20 45 58 43 4c 4e 58 42 20 61 6e 64 0d |2B, EXCLNXB and.| 00000850 0a 20 20 20 20 45 58 43 4c 46 58 42 2e 20 20 4e |. EXCLFXB. N| 00000860 6f 74 65 20 74 68 61 74 20 74 68 65 20 27 4d 41 |ote that the 'MA| 00000870 58 27 0d 0a 20 20 20 20 6f 70 74 69 6f 6e 20 6d |X'.. option m| 00000880 75 73 74 20 62 65 20 75 73 65 64 20 77 68 65 6e |ust be used when| 00000890 20 63 6f 6d 70 69 6c 69 6e 67 0d 0a 20 20 20 20 | compiling.. | 000008a0 45 58 43 4c 31 42 20 61 6e 64 20 45 58 43 4c 32 |EXCL1B and EXCL2| 000008b0 42 20 28 65 2e 67 2e 20 42 43 50 4c 20 45 58 43 |B (e.g. BCPL EXC| 000008c0 4c 31 42 0d 0a 20 20 20 20 45 58 43 4c 31 20 4d |L1B.. EXCL1 M| 000008d0 41 58 29 2e 0d 0a 0d 0a 28 33 29 20 4a 4f 49 4e |AX).....(3) JOIN| 000008e0 43 49 4e 20 74 68 65 20 66 6f 75 72 20 43 49 4e |CIN the four CIN| 000008f0 54 43 4f 44 45 20 66 69 6c 65 73 0d 0a 20 20 20 |TCODE files.. | 00000900 20 66 72 6f 6d 20 74 68 65 20 63 6f 6d 70 69 6c | from the compil| 00000910 61 74 69 6f 6e 73 20 77 69 74 68 20 46 58 41 52 |ations with FXAR| 00000920 49 54 48 2c 0d 0a 20 20 20 20 46 58 49 4f 20 61 |ITH,.. FXIO a| 00000930 6e 64 20 46 58 45 58 50 20 74 6f 20 61 20 74 65 |nd FXEXP to a te| 00000940 6d 70 6f 72 61 72 79 20 66 69 6c 65 2e 0d 0a 0d |mporary file....| 00000950 0a 28 34 29 20 52 75 6e 20 4e 45 45 44 43 49 4e |.(4) Run NEEDCIN| 00000960 20 6f 6e 20 74 68 65 20 74 65 6d 70 6f 72 61 72 | on the temporar| 00000970 79 20 66 69 6c 65 0d 0a 20 20 20 20 77 69 74 68 |y file.. with| 00000980 20 6c 69 62 72 61 72 79 20 66 69 6c 65 20 4c 49 | library file LI| 00000990 42 20 74 6f 20 70 72 6f 64 75 63 65 0d 0a 20 20 |B to produce.. | 000009a0 20 20 45 58 46 58 43 2e 0d 0a 0d 0a 0d 0a 45 58 | EXFXC.......EX| 000009b0 53 50 49 52 0d 0a 3d 3d 3d 3d 3d 3d 0d 0a 0d 0a |SPIR..======....| 000009c0 54 68 69 73 20 70 72 6f 67 72 61 6d 20 75 73 65 |This program use| 000009d0 73 20 74 68 65 20 66 61 73 74 20 69 6e 74 65 67 |s the fast integ| 000009e0 65 72 0d 0a 72 6f 75 74 69 6e 65 73 20 74 6f 20 |er..routines to | 000009f0 64 72 61 77 20 61 20 73 70 69 72 61 6c 2e 20 20 |draw a spiral. | 00000a00 49 74 20 69 73 20 62 61 73 65 64 0d 0a 6f 6e 20 |It is based..on | 00000a10 74 68 65 20 70 72 6f 67 72 61 6d 20 27 53 50 49 |the program 'SPI| 00000a20 52 41 4c 31 27 20 69 6e 20 27 43 72 65 61 74 69 |RAL1' in 'Creati| 00000a30 76 65 0d 0a 47 72 61 70 68 69 63 73 20 6f 6e 20 |ve..Graphics on | 00000a40 74 68 65 20 42 42 43 20 4d 69 63 72 6f 63 6f 6d |the BBC Microcom| 00000a50 70 75 74 65 72 27 20 62 79 20 4a 0d 0a 43 6f 77 |puter' by J..Cow| 00000a60 6e 69 65 20 70 75 62 6c 69 73 68 65 64 20 62 79 |nie published by| 00000a70 20 41 63 6f 72 6e 73 6f 66 74 20 4c 74 64 2e 0d | Acornsoft Ltd..| 00000a80 0a 0d 0a 54 68 65 20 73 6f 75 72 63 65 20 69 73 |...The source is| 00000a90 20 69 6e 20 66 69 6c 65 20 45 58 53 50 49 52 42 | in file EXSPIRB| 00000aa0 2e 20 20 49 66 20 74 68 65 0d 0a 73 6f 75 72 63 |. If the..sourc| 00000ab0 65 20 69 73 20 63 68 61 6e 67 65 64 20 69 74 20 |e is changed it | 00000ac0 73 68 6f 75 6c 64 20 62 65 0d 0a 72 65 63 6f 6d |should be..recom| 00000ad0 70 69 6c 65 64 20 74 68 65 6e 20 4a 4f 49 4e 43 |piled then JOINC| 00000ae0 49 4e 20 75 73 65 64 20 74 6f 20 6a 6f 69 6e 20 |IN used to join | 00000af0 69 74 0d 0a 77 69 74 68 20 49 4e 54 43 41 4c 43 |it..with INTCALC| 00000b00 20 61 6e 64 20 66 69 6e 61 6c 6c 79 20 4e 45 45 | and finally NEE| 00000b10 44 43 49 4e 20 75 73 65 64 0d 0a 74 6f 20 65 78 |DCIN used..to ex| 00000b20 74 72 61 63 74 20 74 68 65 20 70 72 6f 63 65 64 |tract the proced| 00000b30 75 72 65 73 20 6e 65 65 64 65 64 20 66 72 6f 6d |ures needed from| 00000b40 0d 0a 4c 49 42 2e 0d 0a 0d 0a |..LIB.....| 00000b4a