Home » Personal collection » Acorn DFS disks » dfs_box03_disk13_bcpl_calc.scp » EXCL1B
EXCL1B
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: | EXCL1B |
Read OK: | ✔ |
File size: | 1994 bytes |
Load address: | 21122 |
Exec address: | 20006 |
File contents
SECTION "EXCL1B" NEEDS "VDU" // Floating/fixed point calculator - common procedures 1. // The calculation procedures used are // copyright Richards Computer Products Ltd. (C) 1983 // Written by C Jobson 19/04/83 // Contains START, COPYL1L2, CURSOR, FLASHNUM, NUMPOS, PERFORM.OP, // RESET & WRITENUM. GET "LIBHDR" GET "FPHDR" GET "EXCLHDR" // START initialises then enters a loop to process input keystrokes. LET START() BE $( LET INSTR = FINDINPUT("/K") IF INSTR = 0 THEN STOP(RESULT2) SELECTINPUT(INSTR) RES.LEV := LEVEL() V1 := GETVEC(FP.LEN) V2 := GETVEC(FP.LEN) FNSET := 0 OPSYS(#XE1, FIRSTFN, 0) // function key codes OPSYS(#XE2, FIRSTFN, 0) // same for SHIFTed function keys OPSYS(4, 1, 0) // disable arrow keys & COPY MODE(7) // clear screen VDU("23,1,0;0;0;0;") // hide cursor // Set colours for various lines. FOR I = 0 TO 8 $( CURSOR(0, (TABLE 1, 2, 4, 5, 6, 7, 18, 19, 22)!I) WRBIN((TABLE C.GREEN, C.GREEN, // heading C.CYAN, C.CYAN, C.CYAN, C.CYAN, // text C.YELLOW, C.YELLOW, // keys available C.YELLOW)!I) // function keys $) // Display text. CURSOR(1, 4) WRITES("This program uses the BCPL Calculations") CURSOR(1, 5) WRITES("Package to simulate a calculator. The") CURSOR(1, 6) WRITES("source of this program is one of the") CURSOR(1, 7) WRITES("examples included with the package.") // Display heading for function keys. CURSOR(1, 22) WRITES("f0 f1 f2 f3 f4 f5 f6 f7 f8 f9") // Set up box within which number will be displayed. This includes // setting up the double height characters. FOR I = 9 TO 12 BY 3 DO // top & bottom lines $( LET CHAR = I=9 -> 163, 240 CURSOR(7, I) VDU("146,234") FOR J = 1 TO 21 DO WRBIN(CHAR) WRBIN(181) $) FOR I = 10 TO 11 DO // lines on which number displayed $( CURSOR(6, I) VDU("141,146,234,135") CURSOR(28, I) VDU("137,146,181") $) // Display heading and function key usage, initialise numbers and // display 0. FOR I = 1 TO 2 $( CURSOR(1, I) WRBIN(141) // double height DISPHDNG() $) CURSOR(1, 23) DISPFNS() RESET() // initialise numbers and display 0 // Start of main loop. RES.LAB: // re-entry point from LONGJUMPs $( // Display status line. CURSOR(0, 15) STATECOL(S.NUM1) DISPNUM(V1, 0) STATECOL(S.OP) WRCH(OP) STATECOL(S.NUM2) DISPNUM(V2, 0) STATECOL(S.EQUALS) WRCH('=') SWITCHON GETCH() INTO $( // '-' is normally handled like '+', '*' and '/' but may be // the first character of a number (e.g. '123 * -456'). CASE T.MINUS: IF STATE=S.NUM2 & (OP='**' | OP='/') THEN GOTO DONUMBER // '+', '*', '/' and '-' (as an operator). If expecting // equals do the current operation (e.g. '1 + 2 *'). In all // cases save the operation, copy the first number to the // second (so 3 * = gives 3*3 etc.) and expect the second // number. CASE T.OP: IF STATE = S.EQUALS THEN PERFORM.OP() STATE := S.NUM2 OP := CH MOVE(V1, V2, FP.LEN+1) ENDCASE // Function like sine, sqrt etc. Perform the function and // display the result. Leave the current // state alone. CASE T.MONOP: $( LET NUM = STATE = S.EQUALS | STATE = S.NUM2 -> V2, V1 FPEXCEP := 0 FUNCOP(NUM, NUM) WRITENUM(NUM, FPEXCEP) $) ENDCASE // '='. Perform the current operation and expect the first // number. CASE T.EQUALS: STATE := S.NUM1 PERFORM.OP() ENDCASE // Anything else (including 'clear') is treated as a number. // Unless expecting the second number or '=' read the first // number (in most cases the state will be S.NUM1 or S.NUM2 // but it might be S.OP or S.EQUALS after use of a function // such as sine). Set the state to expecting an operator if // first number read or equals if second number read. DEFAULT: DONUMBER: TEST STATE = S.NUM1 | STATE = S.OP THEN $( GETNUM(V1) STATE := S.OP $) ELSE $( GETNUM(V2) STATE := S.EQUALS $) $) $) REPEAT $) // COPYL1L2 copies the first line of a displayed number to the second // line so that it appears double height. The operating system 'read // character at cursor' function is used. AND COPYL1L2() BE $( NUMPOS() // cursor at first character FOR I = 0 TO NUMWIDTH DO VDU("10,%,11", OPSYS(135)) $) // CURSOR positions the cursor. AND CURSOR(X, Y) BE VDU("31,%,%", X, Y) // FLASHNUM flashes the displayed number. AND FLASHNUM() BE $( NUMPOS() WRBIN(136) $) // NUMPOS positions the cursor at the start of the area reserved for // displaying a number. AND NUMPOS() BE CURSOR(10, 10) // PERFORM.OP performs the current operation on the two numbers, // stores the result in the first and displays the result. AND PERFORM.OP() BE $( FPEXCEP := 0 (OP='+' -> FPLUS, OP='-' -> FMINUS, OP='/' -> FDIV, FMULT)(V1, V2, V1) WRITENUM(V1, FPEXCEP) $) // RESET re-initialises the numbers, the current operation and the // state. It exits by LONGJUMPing to the restart point in START. AND RESET() BE $( FFLOAT(0, V1) FFLOAT(0, V2) OP := '+' STATE := S.NUM1 WRITENUM(V1, 0) // display '0' LONGJUMP(RES.LEV, RES.LAB) $) // STATECOL is a local procedure used in writing the status line. AND STATECOL(S) BE WRBIN(STATE = S -> C.WHITE, C.MAGENTA) // WRITENUM displays a double-height number in the appropriate // position. AND WRITENUM(NUM, ERRCODE) BE $( NUMPOS() // position cursor WRBIN(137) // cancel flashing DISPNUM(NUM, ERRCODE) // display number COPYL1L2() // copy to second line $)
00000000 53 45 43 54 49 4f 4e 20 22 45 58 43 4c 31 42 22 |SECTION "EXCL1B"| 00000010 0d 0a 4e 45 45 44 53 20 22 56 44 55 22 0d 0a 0d |..NEEDS "VDU"...| 00000020 0a 2f 2f 20 46 6c 6f 61 74 69 6e 67 2f 66 69 78 |.// Floating/fix| 00000030 65 64 20 70 6f 69 6e 74 20 63 61 6c 63 75 6c 61 |ed point calcula| 00000040 74 6f 72 20 2d 20 63 6f 6d 6d 6f 6e 20 70 72 6f |tor - common pro| 00000050 63 65 64 75 72 65 73 20 31 2e 0d 0a 2f 2f 20 54 |cedures 1...// T| 00000060 68 65 20 63 61 6c 63 75 6c 61 74 69 6f 6e 20 70 |he calculation p| 00000070 72 6f 63 65 64 75 72 65 73 20 75 73 65 64 20 61 |rocedures used a| 00000080 72 65 0d 0a 2f 2f 20 63 6f 70 79 72 69 67 68 74 |re..// copyright| 00000090 20 52 69 63 68 61 72 64 73 20 43 6f 6d 70 75 74 | Richards Comput| 000000a0 65 72 20 50 72 6f 64 75 63 74 73 20 4c 74 64 2e |er Products Ltd.| 000000b0 20 28 43 29 20 31 39 38 33 0d 0a 2f 2f 20 57 72 | (C) 1983..// Wr| 000000c0 69 74 74 65 6e 20 62 79 20 43 20 4a 6f 62 73 6f |itten by C Jobso| 000000d0 6e 20 20 31 39 2f 30 34 2f 38 33 0d 0a 0d 0a 2f |n 19/04/83..../| 000000e0 2f 20 43 6f 6e 74 61 69 6e 73 20 53 54 41 52 54 |/ Contains START| 000000f0 2c 20 43 4f 50 59 4c 31 4c 32 2c 20 43 55 52 53 |, COPYL1L2, CURS| 00000100 4f 52 2c 20 46 4c 41 53 48 4e 55 4d 2c 20 4e 55 |OR, FLASHNUM, NU| 00000110 4d 50 4f 53 2c 20 50 45 52 46 4f 52 4d 2e 4f 50 |MPOS, PERFORM.OP| 00000120 2c 0d 0a 2f 2f 20 52 45 53 45 54 20 26 20 57 52 |,..// RESET & WR| 00000130 49 54 45 4e 55 4d 2e 0d 0a 0d 0a 47 45 54 20 22 |ITENUM.....GET "| 00000140 4c 49 42 48 44 52 22 0d 0a 47 45 54 20 22 46 50 |LIBHDR"..GET "FP| 00000150 48 44 52 22 0d 0a 47 45 54 20 22 45 58 43 4c 48 |HDR"..GET "EXCLH| 00000160 44 52 22 0d 0a 0d 0a 0d 0a 2f 2f 20 53 54 41 52 |DR"......// STAR| 00000170 54 20 69 6e 69 74 69 61 6c 69 73 65 73 20 74 68 |T initialises th| 00000180 65 6e 20 65 6e 74 65 72 73 20 61 20 6c 6f 6f 70 |en enters a loop| 00000190 20 74 6f 20 70 72 6f 63 65 73 73 20 69 6e 70 75 | to process inpu| 000001a0 74 20 6b 65 79 73 74 72 6f 6b 65 73 2e 0d 0a 0d |t keystrokes....| 000001b0 0a 4c 45 54 20 53 54 41 52 54 28 29 20 42 45 0d |.LET START() BE.| 000001c0 0a 24 28 20 4c 45 54 20 49 4e 53 54 52 20 3d 20 |.$( LET INSTR = | 000001d0 46 49 4e 44 49 4e 50 55 54 28 22 2f 4b 22 29 0d |FINDINPUT("/K").| 000001e0 0a 20 20 20 49 46 20 49 4e 53 54 52 20 3d 20 30 |. IF INSTR = 0| 000001f0 20 54 48 45 4e 0d 0a 20 20 20 20 20 20 53 54 4f | THEN.. STO| 00000200 50 28 52 45 53 55 4c 54 32 29 0d 0a 20 20 20 53 |P(RESULT2).. S| 00000210 45 4c 45 43 54 49 4e 50 55 54 28 49 4e 53 54 52 |ELECTINPUT(INSTR| 00000220 29 0d 0a 0d 0a 20 20 20 52 45 53 2e 4c 45 56 20 |).... RES.LEV | 00000230 3a 3d 20 4c 45 56 45 4c 28 29 0d 0a 20 20 20 56 |:= LEVEL().. V| 00000240 31 20 3a 3d 20 47 45 54 56 45 43 28 46 50 2e 4c |1 := GETVEC(FP.L| 00000250 45 4e 29 0d 0a 20 20 20 56 32 20 3a 3d 20 47 45 |EN).. V2 := GE| 00000260 54 56 45 43 28 46 50 2e 4c 45 4e 29 0d 0a 20 20 |TVEC(FP.LEN).. | 00000270 20 46 4e 53 45 54 20 3a 3d 20 30 0d 0a 0d 0a 20 | FNSET := 0.... | 00000280 20 20 4f 50 53 59 53 28 23 58 45 31 2c 20 46 49 | OPSYS(#XE1, FI| 00000290 52 53 54 46 4e 2c 20 30 29 20 20 20 20 2f 2f 20 |RSTFN, 0) // | 000002a0 66 75 6e 63 74 69 6f 6e 20 6b 65 79 20 63 6f 64 |function key cod| 000002b0 65 73 0d 0a 20 20 20 4f 50 53 59 53 28 23 58 45 |es.. OPSYS(#XE| 000002c0 32 2c 20 46 49 52 53 54 46 4e 2c 20 30 29 20 20 |2, FIRSTFN, 0) | 000002d0 20 20 2f 2f 20 73 61 6d 65 20 66 6f 72 20 53 48 | // same for SH| 000002e0 49 46 54 65 64 20 66 75 6e 63 74 69 6f 6e 20 6b |IFTed function k| 000002f0 65 79 73 0d 0a 20 20 20 4f 50 53 59 53 28 34 2c |eys.. OPSYS(4,| 00000300 20 31 2c 20 30 29 20 20 20 20 20 20 20 20 20 20 | 1, 0) | 00000310 20 20 20 2f 2f 20 64 69 73 61 62 6c 65 20 61 72 | // disable ar| 00000320 72 6f 77 20 6b 65 79 73 20 26 20 43 4f 50 59 0d |row keys & COPY.| 00000330 0a 0d 0a 20 20 20 4d 4f 44 45 28 37 29 20 20 20 |... MODE(7) | 00000340 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000350 20 2f 2f 20 63 6c 65 61 72 20 73 63 72 65 65 6e | // clear screen| 00000360 0d 0a 20 20 20 56 44 55 28 22 32 33 2c 31 2c 30 |.. VDU("23,1,0| 00000370 3b 30 3b 30 3b 30 3b 22 29 20 20 20 20 20 20 20 |;0;0;0;") | 00000380 2f 2f 20 68 69 64 65 20 63 75 72 73 6f 72 0d 0a |// hide cursor..| 00000390 0d 0a 20 20 20 2f 2f 20 53 65 74 20 63 6f 6c 6f |.. // Set colo| 000003a0 75 72 73 20 66 6f 72 20 76 61 72 69 6f 75 73 20 |urs for various | 000003b0 6c 69 6e 65 73 2e 0d 0a 0d 0a 20 20 20 46 4f 52 |lines..... FOR| 000003c0 20 49 20 3d 20 30 20 54 4f 20 38 0d 0a 20 20 20 | I = 0 TO 8.. | 000003d0 24 28 20 43 55 52 53 4f 52 28 30 2c 20 28 54 41 |$( CURSOR(0, (TA| 000003e0 42 4c 45 20 31 2c 20 32 2c 20 34 2c 20 35 2c 20 |BLE 1, 2, 4, 5, | 000003f0 36 2c 20 37 2c 20 31 38 2c 20 31 39 2c 20 32 32 |6, 7, 18, 19, 22| 00000400 29 21 49 29 0d 0a 20 20 20 20 20 20 57 52 42 49 |)!I).. WRBI| 00000410 4e 28 28 54 41 42 4c 45 20 43 2e 47 52 45 45 4e |N((TABLE C.GREEN| 00000420 2c 20 43 2e 47 52 45 45 4e 2c 20 20 20 20 20 20 |, C.GREEN, | 00000430 20 20 20 20 20 20 20 20 20 2f 2f 20 68 65 61 64 | // head| 00000440 69 6e 67 0d 0a 20 20 20 20 20 20 20 20 20 20 20 |ing.. | 00000450 20 20 20 20 20 20 20 20 43 2e 43 59 41 4e 2c 20 | C.CYAN, | 00000460 43 2e 43 59 41 4e 2c 20 43 2e 43 59 41 4e 2c 20 |C.CYAN, C.CYAN, | 00000470 43 2e 43 59 41 4e 2c 20 2f 2f 20 74 65 78 74 0d |C.CYAN, // text.| 00000480 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 |. | 00000490 20 20 20 20 43 2e 59 45 4c 4c 4f 57 2c 20 43 2e | C.YELLOW, C.| 000004a0 59 45 4c 4c 4f 57 2c 20 20 20 20 20 20 20 20 20 |YELLOW, | 000004b0 20 20 20 20 2f 2f 20 6b 65 79 73 20 61 76 61 69 | // keys avai| 000004c0 6c 61 62 6c 65 0d 0a 20 20 20 20 20 20 20 20 20 |lable.. | 000004d0 20 20 20 20 20 20 20 20 20 20 43 2e 59 45 4c 4c | C.YELL| 000004e0 4f 57 29 21 49 29 20 20 20 20 20 20 20 20 20 20 |OW)!I) | 000004f0 20 20 20 20 20 20 20 20 20 20 2f 2f 20 66 75 6e | // fun| 00000500 63 74 69 6f 6e 20 6b 65 79 73 0d 0a 20 20 20 24 |ction keys.. $| 00000510 29 0d 0a 0d 0a 20 20 20 2f 2f 20 44 69 73 70 6c |).... // Displ| 00000520 61 79 20 74 65 78 74 2e 0d 0a 0d 0a 20 20 20 43 |ay text..... C| 00000530 55 52 53 4f 52 28 31 2c 20 34 29 0d 0a 20 20 20 |URSOR(1, 4).. | 00000540 57 52 49 54 45 53 28 22 54 68 69 73 20 70 72 6f |WRITES("This pro| 00000550 67 72 61 6d 20 75 73 65 73 20 74 68 65 20 42 43 |gram uses the BC| 00000560 50 4c 20 43 61 6c 63 75 6c 61 74 69 6f 6e 73 22 |PL Calculations"| 00000570 29 0d 0a 20 20 20 43 55 52 53 4f 52 28 31 2c 20 |).. CURSOR(1, | 00000580 35 29 0d 0a 20 20 20 57 52 49 54 45 53 28 22 50 |5).. WRITES("P| 00000590 61 63 6b 61 67 65 20 74 6f 20 73 69 6d 75 6c 61 |ackage to simula| 000005a0 74 65 20 61 20 63 61 6c 63 75 6c 61 74 6f 72 2e |te a calculator.| 000005b0 20 20 20 54 68 65 22 29 0d 0a 20 20 20 43 55 52 | The").. CUR| 000005c0 53 4f 52 28 31 2c 20 36 29 0d 0a 20 20 20 57 52 |SOR(1, 6).. WR| 000005d0 49 54 45 53 28 22 73 6f 75 72 63 65 20 20 6f 66 |ITES("source of| 000005e0 20 74 68 69 73 20 20 70 72 6f 67 72 61 6d 20 20 | this program | 000005f0 69 73 20 6f 6e 65 20 6f 66 20 74 68 65 22 29 0d |is one of the").| 00000600 0a 20 20 20 43 55 52 53 4f 52 28 31 2c 20 37 29 |. CURSOR(1, 7)| 00000610 0d 0a 20 20 20 57 52 49 54 45 53 28 22 65 78 61 |.. WRITES("exa| 00000620 6d 70 6c 65 73 20 20 69 6e 63 6c 75 64 65 64 20 |mples included | 00000630 20 77 69 74 68 20 20 74 68 65 20 20 70 61 63 6b | with the pack| 00000640 61 67 65 2e 22 29 0d 0a 0d 0a 20 20 20 2f 2f 20 |age.").... // | 00000650 44 69 73 70 6c 61 79 20 68 65 61 64 69 6e 67 20 |Display heading | 00000660 66 6f 72 20 66 75 6e 63 74 69 6f 6e 20 6b 65 79 |for function key| 00000670 73 2e 0d 0a 0d 0a 20 20 20 43 55 52 53 4f 52 28 |s..... CURSOR(| 00000680 31 2c 20 32 32 29 0d 0a 20 20 20 57 52 49 54 45 |1, 22).. WRITE| 00000690 53 28 22 66 30 20 20 66 31 20 20 66 32 20 20 66 |S("f0 f1 f2 f| 000006a0 33 20 20 66 34 20 20 66 35 20 20 66 36 20 20 66 |3 f4 f5 f6 f| 000006b0 37 20 20 66 38 20 20 66 39 22 29 0d 0a 0d 0a 20 |7 f8 f9").... | 000006c0 20 20 2f 2f 20 53 65 74 20 75 70 20 62 6f 78 20 | // Set up box | 000006d0 77 69 74 68 69 6e 20 77 68 69 63 68 20 6e 75 6d |within which num| 000006e0 62 65 72 20 77 69 6c 6c 20 62 65 20 64 69 73 70 |ber will be disp| 000006f0 6c 61 79 65 64 2e 20 20 54 68 69 73 20 69 6e 63 |layed. This inc| 00000700 6c 75 64 65 73 0d 0a 20 20 20 2f 2f 20 73 65 74 |ludes.. // set| 00000710 74 69 6e 67 20 75 70 20 74 68 65 20 64 6f 75 62 |ting up the doub| 00000720 6c 65 20 68 65 69 67 68 74 20 63 68 61 72 61 63 |le height charac| 00000730 74 65 72 73 2e 0d 0a 0d 0a 20 20 20 46 4f 52 20 |ters..... FOR | 00000740 49 20 3d 20 39 20 54 4f 20 31 32 20 42 59 20 33 |I = 9 TO 12 BY 3| 00000750 20 44 4f 20 20 20 20 20 20 20 2f 2f 20 74 6f 70 | DO // top| 00000760 20 26 20 62 6f 74 74 6f 6d 20 6c 69 6e 65 73 0d | & bottom lines.| 00000770 0a 20 20 20 24 28 20 4c 45 54 20 43 48 41 52 20 |. $( LET CHAR | 00000780 3d 20 49 3d 39 20 2d 3e 20 31 36 33 2c 20 32 34 |= I=9 -> 163, 24| 00000790 30 0d 0a 20 20 20 20 20 20 43 55 52 53 4f 52 28 |0.. CURSOR(| 000007a0 37 2c 20 49 29 0d 0a 20 20 20 20 20 20 56 44 55 |7, I).. VDU| 000007b0 28 22 31 34 36 2c 32 33 34 22 29 0d 0a 20 20 20 |("146,234").. | 000007c0 20 20 20 46 4f 52 20 4a 20 3d 20 31 20 54 4f 20 | FOR J = 1 TO | 000007d0 32 31 20 44 4f 0d 0a 20 20 20 20 20 20 20 20 20 |21 DO.. | 000007e0 57 52 42 49 4e 28 43 48 41 52 29 0d 0a 20 20 20 |WRBIN(CHAR).. | 000007f0 20 20 20 57 52 42 49 4e 28 31 38 31 29 0d 0a 20 | WRBIN(181).. | 00000800 20 20 24 29 0d 0a 0d 0a 20 20 20 46 4f 52 20 49 | $).... FOR I| 00000810 20 3d 20 31 30 20 54 4f 20 31 31 20 44 4f 20 20 | = 10 TO 11 DO | 00000820 20 20 20 20 20 20 20 20 20 2f 2f 20 6c 69 6e 65 | // line| 00000830 73 20 6f 6e 20 77 68 69 63 68 20 6e 75 6d 62 65 |s on which numbe| 00000840 72 20 64 69 73 70 6c 61 79 65 64 0d 0a 20 20 20 |r displayed.. | 00000850 24 28 20 43 55 52 53 4f 52 28 36 2c 20 49 29 0d |$( CURSOR(6, I).| 00000860 0a 20 20 20 20 20 20 56 44 55 28 22 31 34 31 2c |. VDU("141,| 00000870 31 34 36 2c 32 33 34 2c 31 33 35 22 29 0d 0a 20 |146,234,135").. | 00000880 20 20 20 20 20 43 55 52 53 4f 52 28 32 38 2c 20 | CURSOR(28, | 00000890 49 29 0d 0a 20 20 20 20 20 20 56 44 55 28 22 31 |I).. VDU("1| 000008a0 33 37 2c 31 34 36 2c 31 38 31 22 29 0d 0a 20 20 |37,146,181").. | 000008b0 20 24 29 0d 0a 0d 0a 20 20 20 2f 2f 20 44 69 73 | $).... // Dis| 000008c0 70 6c 61 79 20 68 65 61 64 69 6e 67 20 61 6e 64 |play heading and| 000008d0 20 66 75 6e 63 74 69 6f 6e 20 6b 65 79 20 75 73 | function key us| 000008e0 61 67 65 2c 20 69 6e 69 74 69 61 6c 69 73 65 20 |age, initialise | 000008f0 6e 75 6d 62 65 72 73 20 61 6e 64 0d 0a 20 20 20 |numbers and.. | 00000900 2f 2f 20 64 69 73 70 6c 61 79 20 30 2e 0d 0a 0d |// display 0....| 00000910 0a 20 20 20 46 4f 52 20 49 20 3d 20 31 20 54 4f |. FOR I = 1 TO| 00000920 20 32 0d 0a 20 20 20 24 28 20 43 55 52 53 4f 52 | 2.. $( CURSOR| 00000930 28 31 2c 20 49 29 0d 0a 20 20 20 20 20 20 57 52 |(1, I).. WR| 00000940 42 49 4e 28 31 34 31 29 20 20 20 20 20 2f 2f 20 |BIN(141) // | 00000950 64 6f 75 62 6c 65 20 68 65 69 67 68 74 0d 0a 20 |double height.. | 00000960 20 20 20 20 20 44 49 53 50 48 44 4e 47 28 29 0d | DISPHDNG().| 00000970 0a 20 20 20 24 29 0d 0a 20 20 20 43 55 52 53 4f |. $).. CURSO| 00000980 52 28 31 2c 20 32 33 29 0d 0a 20 20 20 44 49 53 |R(1, 23).. DIS| 00000990 50 46 4e 53 28 29 0d 0a 20 20 20 52 45 53 45 54 |PFNS().. RESET| 000009a0 28 29 20 20 20 20 20 2f 2f 20 69 6e 69 74 69 61 |() // initia| 000009b0 6c 69 73 65 20 6e 75 6d 62 65 72 73 20 61 6e 64 |lise numbers and| 000009c0 20 64 69 73 70 6c 61 79 20 30 0d 0a 0d 0a 20 20 | display 0.... | 000009d0 20 2f 2f 20 53 74 61 72 74 20 6f 66 20 6d 61 69 | // Start of mai| 000009e0 6e 20 6c 6f 6f 70 2e 0d 0a 0d 0a 52 45 53 2e 4c |n loop.....RES.L| 000009f0 41 42 3a 20 20 20 20 20 20 20 2f 2f 20 72 65 2d |AB: // re-| 00000a00 65 6e 74 72 79 20 70 6f 69 6e 74 20 66 72 6f 6d |entry point from| 00000a10 20 4c 4f 4e 47 4a 55 4d 50 73 0d 0a 20 20 20 24 | LONGJUMPs.. $| 00000a20 28 0d 0a 20 20 20 20 20 20 2f 2f 20 44 69 73 70 |(.. // Disp| 00000a30 6c 61 79 20 73 74 61 74 75 73 20 6c 69 6e 65 2e |lay status line.| 00000a40 0d 0a 0d 0a 20 20 20 20 20 20 43 55 52 53 4f 52 |.... CURSOR| 00000a50 28 30 2c 20 31 35 29 0d 0a 20 20 20 20 20 20 53 |(0, 15).. S| 00000a60 54 41 54 45 43 4f 4c 28 53 2e 4e 55 4d 31 29 0d |TATECOL(S.NUM1).| 00000a70 0a 20 20 20 20 20 20 44 49 53 50 4e 55 4d 28 56 |. DISPNUM(V| 00000a80 31 2c 20 30 29 0d 0a 20 20 20 20 20 20 53 54 41 |1, 0).. STA| 00000a90 54 45 43 4f 4c 28 53 2e 4f 50 29 0d 0a 20 20 20 |TECOL(S.OP).. | 00000aa0 20 20 20 57 52 43 48 28 4f 50 29 0d 0a 20 20 20 | WRCH(OP).. | 00000ab0 20 20 20 53 54 41 54 45 43 4f 4c 28 53 2e 4e 55 | STATECOL(S.NU| 00000ac0 4d 32 29 0d 0a 20 20 20 20 20 20 44 49 53 50 4e |M2).. DISPN| 00000ad0 55 4d 28 56 32 2c 20 30 29 0d 0a 20 20 20 20 20 |UM(V2, 0).. | 00000ae0 20 53 54 41 54 45 43 4f 4c 28 53 2e 45 51 55 41 | STATECOL(S.EQUA| 00000af0 4c 53 29 0d 0a 20 20 20 20 20 20 57 52 43 48 28 |LS).. WRCH(| 00000b00 27 3d 27 29 0d 0a 0d 0a 20 20 20 20 20 20 53 57 |'=').... SW| 00000b10 49 54 43 48 4f 4e 20 47 45 54 43 48 28 29 20 49 |ITCHON GETCH() I| 00000b20 4e 54 4f 0d 0a 20 20 20 20 20 20 24 28 0d 0a 20 |NTO.. $(.. | 00000b30 20 20 20 20 20 20 20 20 2f 2f 20 27 2d 27 20 69 | // '-' i| 00000b40 73 20 6e 6f 72 6d 61 6c 6c 79 20 68 61 6e 64 6c |s normally handl| 00000b50 65 64 20 6c 69 6b 65 20 27 2b 27 2c 20 27 2a 27 |ed like '+', '*'| 00000b60 20 61 6e 64 20 27 2f 27 20 62 75 74 20 6d 61 79 | and '/' but may| 00000b70 20 62 65 0d 0a 20 20 20 20 20 20 20 20 20 2f 2f | be.. //| 00000b80 20 74 68 65 20 66 69 72 73 74 20 63 68 61 72 61 | the first chara| 00000b90 63 74 65 72 20 6f 66 20 61 20 6e 75 6d 62 65 72 |cter of a number| 00000ba0 20 28 65 2e 67 2e 20 27 31 32 33 20 2a 20 2d 34 | (e.g. '123 * -4| 00000bb0 35 36 27 29 2e 0d 0a 0d 0a 20 20 20 20 20 20 20 |56')..... | 00000bc0 20 20 43 41 53 45 20 54 2e 4d 49 4e 55 53 3a 0d | CASE T.MINUS:.| 00000bd0 0a 20 20 20 20 20 20 20 20 20 20 20 20 49 46 20 |. IF | 00000be0 53 54 41 54 45 3d 53 2e 4e 55 4d 32 20 26 20 28 |STATE=S.NUM2 & (| 00000bf0 4f 50 3d 27 2a 2a 27 20 7c 20 4f 50 3d 27 2f 27 |OP='**' | OP='/'| 00000c00 29 20 54 48 45 4e 0d 0a 20 20 20 20 20 20 20 20 |) THEN.. | 00000c10 20 20 20 20 20 20 20 47 4f 54 4f 20 44 4f 4e 55 | GOTO DONU| 00000c20 4d 42 45 52 0d 0a 0d 0a 20 20 20 20 20 20 20 20 |MBER.... | 00000c30 20 2f 2f 20 27 2b 27 2c 20 27 2a 27 2c 20 27 2f | // '+', '*', '/| 00000c40 27 20 61 6e 64 20 27 2d 27 20 28 61 73 20 61 6e |' and '-' (as an| 00000c50 20 6f 70 65 72 61 74 6f 72 29 2e 20 20 49 66 20 | operator). If | 00000c60 65 78 70 65 63 74 69 6e 67 0d 0a 20 20 20 20 20 |expecting.. | 00000c70 20 20 20 20 2f 2f 20 65 71 75 61 6c 73 20 64 6f | // equals do| 00000c80 20 74 68 65 20 63 75 72 72 65 6e 74 20 6f 70 65 | the current ope| 00000c90 72 61 74 69 6f 6e 20 28 65 2e 67 2e 20 27 31 20 |ration (e.g. '1 | 00000ca0 2b 20 32 20 2a 27 29 2e 20 20 49 6e 20 61 6c 6c |+ 2 *'). In all| 00000cb0 0d 0a 20 20 20 20 20 20 20 20 20 2f 2f 20 63 61 |.. // ca| 00000cc0 73 65 73 20 73 61 76 65 20 74 68 65 20 6f 70 65 |ses save the ope| 00000cd0 72 61 74 69 6f 6e 2c 20 63 6f 70 79 20 74 68 65 |ration, copy the| 00000ce0 20 66 69 72 73 74 20 6e 75 6d 62 65 72 20 74 6f | first number to| 00000cf0 20 74 68 65 0d 0a 20 20 20 20 20 20 20 20 20 2f | the.. /| 00000d00 2f 20 73 65 63 6f 6e 64 20 28 73 6f 20 33 20 2a |/ second (so 3 *| 00000d10 20 3d 20 67 69 76 65 73 20 33 2a 33 20 65 74 63 | = gives 3*3 etc| 00000d20 2e 29 20 61 6e 64 20 65 78 70 65 63 74 20 74 68 |.) and expect th| 00000d30 65 20 73 65 63 6f 6e 64 0d 0a 20 20 20 20 20 20 |e second.. | 00000d40 20 20 20 2f 2f 20 6e 75 6d 62 65 72 2e 0d 0a 0d | // number....| 00000d50 0a 20 20 20 20 20 20 20 20 20 43 41 53 45 20 54 |. CASE T| 00000d60 2e 4f 50 3a 0d 0a 20 20 20 20 20 20 20 20 20 20 |.OP:.. | 00000d70 20 20 49 46 20 53 54 41 54 45 20 3d 20 53 2e 45 | IF STATE = S.E| 00000d80 51 55 41 4c 53 20 54 48 45 4e 0d 0a 20 20 20 20 |QUALS THEN.. | 00000d90 20 20 20 20 20 20 20 20 20 20 20 50 45 52 46 4f | PERFO| 00000da0 52 4d 2e 4f 50 28 29 0d 0a 20 20 20 20 20 20 20 |RM.OP().. | 00000db0 20 20 20 20 20 53 54 41 54 45 20 3a 3d 20 53 2e | STATE := S.| 00000dc0 4e 55 4d 32 0d 0a 20 20 20 20 20 20 20 20 20 20 |NUM2.. | 00000dd0 20 20 4f 50 20 3a 3d 20 43 48 0d 0a 20 20 20 20 | OP := CH.. | 00000de0 20 20 20 20 20 20 20 20 4d 4f 56 45 28 56 31 2c | MOVE(V1,| 00000df0 20 56 32 2c 20 46 50 2e 4c 45 4e 2b 31 29 0d 0a | V2, FP.LEN+1)..| 00000e00 20 20 20 20 20 20 20 20 20 20 20 20 45 4e 44 43 | ENDC| 00000e10 41 53 45 0d 0a 0d 0a 20 20 20 20 20 20 20 20 20 |ASE.... | 00000e20 2f 2f 20 46 75 6e 63 74 69 6f 6e 20 6c 69 6b 65 |// Function like| 00000e30 20 73 69 6e 65 2c 20 73 71 72 74 20 65 74 63 2e | sine, sqrt etc.| 00000e40 20 20 50 65 72 66 6f 72 6d 20 74 68 65 20 66 75 | Perform the fu| 00000e50 6e 63 74 69 6f 6e 20 61 6e 64 0d 0a 20 20 20 20 |nction and.. | 00000e60 20 20 20 20 20 2f 2f 20 64 69 73 70 6c 61 79 20 | // display | 00000e70 74 68 65 20 72 65 73 75 6c 74 2e 20 4c 65 61 76 |the result. Leav| 00000e80 65 20 74 68 65 20 63 75 72 72 65 6e 74 20 2f 2f |e the current //| 00000e90 20 73 74 61 74 65 20 61 6c 6f 6e 65 2e 0d 0a 0d | state alone....| 00000ea0 0a 20 20 20 20 20 20 20 20 20 43 41 53 45 20 54 |. CASE T| 00000eb0 2e 4d 4f 4e 4f 50 3a 0d 0a 20 20 20 20 20 20 20 |.MONOP:.. | 00000ec0 20 20 20 20 20 24 28 20 4c 45 54 20 4e 55 4d 20 | $( LET NUM | 00000ed0 3d 20 53 54 41 54 45 20 3d 20 53 2e 45 51 55 41 |= STATE = S.EQUA| 00000ee0 4c 53 20 7c 20 53 54 41 54 45 20 3d 20 53 2e 4e |LS | STATE = S.N| 00000ef0 55 4d 32 20 2d 3e 20 56 32 2c 20 56 31 0d 0a 20 |UM2 -> V2, V1.. | 00000f00 20 20 20 20 20 20 20 20 20 20 20 20 20 20 46 50 | FP| 00000f10 45 58 43 45 50 20 3a 3d 20 30 0d 0a 20 20 20 20 |EXCEP := 0.. | 00000f20 20 20 20 20 20 20 20 20 20 20 20 46 55 4e 43 4f | FUNCO| 00000f30 50 28 4e 55 4d 2c 20 4e 55 4d 29 0d 0a 20 20 20 |P(NUM, NUM).. | 00000f40 20 20 20 20 20 20 20 20 20 20 20 20 57 52 49 54 | WRIT| 00000f50 45 4e 55 4d 28 4e 55 4d 2c 20 46 50 45 58 43 45 |ENUM(NUM, FPEXCE| 00000f60 50 29 0d 0a 20 20 20 20 20 20 20 20 20 20 20 20 |P).. | 00000f70 24 29 0d 0a 20 20 20 20 20 20 20 20 20 20 20 20 |$).. | 00000f80 45 4e 44 43 41 53 45 0d 0a 0d 0a 20 20 20 20 20 |ENDCASE.... | 00000f90 20 20 20 20 2f 2f 20 27 3d 27 2e 20 20 50 65 72 | // '='. Per| 00000fa0 66 6f 72 6d 20 74 68 65 20 63 75 72 72 65 6e 74 |form the current| 00000fb0 20 6f 70 65 72 61 74 69 6f 6e 20 61 6e 64 20 65 | operation and e| 00000fc0 78 70 65 63 74 20 74 68 65 20 66 69 72 73 74 0d |xpect the first.| 00000fd0 0a 20 20 20 20 20 20 20 20 20 2f 2f 20 6e 75 6d |. // num| 00000fe0 62 65 72 2e 0d 0a 0d 0a 20 20 20 20 20 20 20 20 |ber..... | 00000ff0 20 43 41 53 45 20 54 2e 45 51 55 41 4c 53 3a 0d | CASE T.EQUALS:.| 00001000 0a 20 20 20 20 20 20 20 20 20 20 20 20 53 54 41 |. STA| 00001010 54 45 20 3a 3d 20 53 2e 4e 55 4d 31 0d 0a 20 20 |TE := S.NUM1.. | 00001020 20 20 20 20 20 20 20 20 20 20 50 45 52 46 4f 52 | PERFOR| 00001030 4d 2e 4f 50 28 29 0d 0a 20 20 20 20 20 20 20 20 |M.OP().. | 00001040 20 20 20 20 45 4e 44 43 41 53 45 0d 0a 0d 0a 20 | ENDCASE.... | 00001050 20 20 20 20 20 20 20 20 2f 2f 20 41 6e 79 74 68 | // Anyth| 00001060 69 6e 67 20 65 6c 73 65 20 28 69 6e 63 6c 75 64 |ing else (includ| 00001070 69 6e 67 20 27 63 6c 65 61 72 27 29 20 69 73 20 |ing 'clear') is | 00001080 74 72 65 61 74 65 64 20 61 73 20 61 20 6e 75 6d |treated as a num| 00001090 62 65 72 2e 0d 0a 20 20 20 20 20 20 20 20 20 2f |ber... /| 000010a0 2f 20 55 6e 6c 65 73 73 20 65 78 70 65 63 74 69 |/ Unless expecti| 000010b0 6e 67 20 74 68 65 20 73 65 63 6f 6e 64 20 6e 75 |ng the second nu| 000010c0 6d 62 65 72 20 6f 72 20 27 3d 27 20 72 65 61 64 |mber or '=' read| 000010d0 20 74 68 65 20 66 69 72 73 74 0d 0a 20 20 20 20 | the first.. | 000010e0 20 20 20 20 20 2f 2f 20 6e 75 6d 62 65 72 20 28 | // number (| 000010f0 69 6e 20 6d 6f 73 74 20 63 61 73 65 73 20 74 68 |in most cases th| 00001100 65 20 73 74 61 74 65 20 77 69 6c 6c 20 62 65 20 |e state will be | 00001110 53 2e 4e 55 4d 31 20 6f 72 20 53 2e 4e 55 4d 32 |S.NUM1 or S.NUM2| 00001120 0d 0a 20 20 20 20 20 20 20 20 20 2f 2f 20 62 75 |.. // bu| 00001130 74 20 69 74 20 6d 69 67 68 74 20 62 65 20 53 2e |t it might be S.| 00001140 4f 50 20 6f 72 20 53 2e 45 51 55 41 4c 53 20 61 |OP or S.EQUALS a| 00001150 66 74 65 72 20 75 73 65 20 6f 66 20 61 20 66 75 |fter use of a fu| 00001160 6e 63 74 69 6f 6e 0d 0a 20 20 20 20 20 20 20 20 |nction.. | 00001170 20 2f 2f 20 73 75 63 68 20 61 73 20 73 69 6e 65 | // such as sine| 00001180 29 2e 20 20 53 65 74 20 74 68 65 20 73 74 61 74 |). Set the stat| 00001190 65 20 74 6f 20 65 78 70 65 63 74 69 6e 67 20 61 |e to expecting a| 000011a0 6e 20 6f 70 65 72 61 74 6f 72 20 69 66 0d 0a 20 |n operator if.. | 000011b0 20 20 20 20 20 20 20 20 2f 2f 20 66 69 72 73 74 | // first| 000011c0 20 6e 75 6d 62 65 72 20 72 65 61 64 20 6f 72 20 | number read or | 000011d0 65 71 75 61 6c 73 20 69 66 20 73 65 63 6f 6e 64 |equals if second| 000011e0 20 6e 75 6d 62 65 72 20 72 65 61 64 2e 0d 0a 0d | number read....| 000011f0 0a 20 20 20 20 20 20 20 20 20 44 45 46 41 55 4c |. DEFAUL| 00001200 54 3a 0d 0a 44 4f 4e 55 4d 42 45 52 3a 0d 0a 20 |T:..DONUMBER:.. | 00001210 20 20 20 20 20 20 20 20 20 20 20 54 45 53 54 20 | TEST | 00001220 53 54 41 54 45 20 3d 20 53 2e 4e 55 4d 31 20 7c |STATE = S.NUM1 || 00001230 20 53 54 41 54 45 20 3d 20 53 2e 4f 50 20 54 48 | STATE = S.OP TH| 00001240 45 4e 0d 0a 20 20 20 20 20 20 20 20 20 20 20 20 |EN.. | 00001250 24 28 20 47 45 54 4e 55 4d 28 56 31 29 0d 0a 20 |$( GETNUM(V1).. | 00001260 20 20 20 20 20 20 20 20 20 20 20 20 20 20 53 54 | ST| 00001270 41 54 45 20 3a 3d 20 53 2e 4f 50 0d 0a 20 20 20 |ATE := S.OP.. | 00001280 20 20 20 20 20 20 20 20 20 24 29 0d 0a 20 20 20 | $).. | 00001290 20 20 20 20 20 20 20 20 20 45 4c 53 45 0d 0a 20 | ELSE.. | 000012a0 20 20 20 20 20 20 20 20 20 20 20 24 28 20 47 45 | $( GE| 000012b0 54 4e 55 4d 28 56 32 29 0d 0a 20 20 20 20 20 20 |TNUM(V2).. | 000012c0 20 20 20 20 20 20 20 20 20 53 54 41 54 45 20 3a | STATE :| 000012d0 3d 20 53 2e 45 51 55 41 4c 53 0d 0a 20 20 20 20 |= S.EQUALS.. | 000012e0 20 20 20 20 20 20 20 20 24 29 0d 0a 20 20 20 20 | $).. | 000012f0 20 20 24 29 0d 0a 20 20 20 24 29 20 52 45 50 45 | $).. $) REPE| 00001300 41 54 0d 0a 24 29 0d 0a 0d 0a 0d 0a 2f 2f 20 43 |AT..$)......// C| 00001310 4f 50 59 4c 31 4c 32 20 63 6f 70 69 65 73 20 74 |OPYL1L2 copies t| 00001320 68 65 20 66 69 72 73 74 20 6c 69 6e 65 20 6f 66 |he first line of| 00001330 20 61 20 64 69 73 70 6c 61 79 65 64 20 6e 75 6d | a displayed num| 00001340 62 65 72 20 74 6f 20 74 68 65 20 73 65 63 6f 6e |ber to the secon| 00001350 64 0d 0a 2f 2f 20 6c 69 6e 65 20 73 6f 20 74 68 |d..// line so th| 00001360 61 74 20 69 74 20 61 70 70 65 61 72 73 20 64 6f |at it appears do| 00001370 75 62 6c 65 20 68 65 69 67 68 74 2e 20 20 54 68 |uble height. Th| 00001380 65 20 6f 70 65 72 61 74 69 6e 67 20 73 79 73 74 |e operating syst| 00001390 65 6d 20 27 72 65 61 64 0d 0a 2f 2f 20 63 68 61 |em 'read..// cha| 000013a0 72 61 63 74 65 72 20 61 74 20 63 75 72 73 6f 72 |racter at cursor| 000013b0 27 20 66 75 6e 63 74 69 6f 6e 20 69 73 20 75 73 |' function is us| 000013c0 65 64 2e 0d 0a 0d 0a 41 4e 44 20 43 4f 50 59 4c |ed.....AND COPYL| 000013d0 31 4c 32 28 29 20 42 45 0d 0a 24 28 20 4e 55 4d |1L2() BE..$( NUM| 000013e0 50 4f 53 28 29 20 20 20 20 2f 2f 20 63 75 72 73 |POS() // curs| 000013f0 6f 72 20 61 74 20 66 69 72 73 74 20 63 68 61 72 |or at first char| 00001400 61 63 74 65 72 0d 0a 20 20 20 46 4f 52 20 49 20 |acter.. FOR I | 00001410 3d 20 30 20 54 4f 20 4e 55 4d 57 49 44 54 48 20 |= 0 TO NUMWIDTH | 00001420 44 4f 0d 0a 20 20 20 20 20 20 56 44 55 28 22 31 |DO.. VDU("1| 00001430 30 2c 25 2c 31 31 22 2c 20 4f 50 53 59 53 28 31 |0,%,11", OPSYS(1| 00001440 33 35 29 29 0d 0a 24 29 0d 0a 0d 0a 0d 0a 2f 2f |35))..$)......//| 00001450 20 43 55 52 53 4f 52 20 70 6f 73 69 74 69 6f 6e | CURSOR position| 00001460 73 20 74 68 65 20 63 75 72 73 6f 72 2e 0d 0a 0d |s the cursor....| 00001470 0a 41 4e 44 20 43 55 52 53 4f 52 28 58 2c 20 59 |.AND CURSOR(X, Y| 00001480 29 20 42 45 0d 0a 20 20 20 56 44 55 28 22 33 31 |) BE.. VDU("31| 00001490 2c 25 2c 25 22 2c 20 58 2c 20 59 29 0d 0a 0d 0a |,%,%", X, Y)....| 000014a0 0d 0a 2f 2f 20 46 4c 41 53 48 4e 55 4d 20 66 6c |..// FLASHNUM fl| 000014b0 61 73 68 65 73 20 74 68 65 20 64 69 73 70 6c 61 |ashes the displa| 000014c0 79 65 64 20 6e 75 6d 62 65 72 2e 0d 0a 0d 0a 41 |yed number.....A| 000014d0 4e 44 20 46 4c 41 53 48 4e 55 4d 28 29 20 42 45 |ND FLASHNUM() BE| 000014e0 0d 0a 24 28 20 4e 55 4d 50 4f 53 28 29 0d 0a 20 |..$( NUMPOS().. | 000014f0 20 20 57 52 42 49 4e 28 31 33 36 29 0d 0a 24 29 | WRBIN(136)..$)| 00001500 0d 0a 0d 0a 0d 0a 2f 2f 20 4e 55 4d 50 4f 53 20 |......// NUMPOS | 00001510 70 6f 73 69 74 69 6f 6e 73 20 74 68 65 20 63 75 |positions the cu| 00001520 72 73 6f 72 20 61 74 20 74 68 65 20 73 74 61 72 |rsor at the star| 00001530 74 20 6f 66 20 74 68 65 20 61 72 65 61 20 72 65 |t of the area re| 00001540 73 65 72 76 65 64 20 66 6f 72 0d 0a 2f 2f 20 64 |served for..// d| 00001550 69 73 70 6c 61 79 69 6e 67 20 61 20 6e 75 6d 62 |isplaying a numb| 00001560 65 72 2e 0d 0a 0d 0a 41 4e 44 20 4e 55 4d 50 4f |er.....AND NUMPO| 00001570 53 28 29 20 42 45 0d 0a 20 20 20 43 55 52 53 4f |S() BE.. CURSO| 00001580 52 28 31 30 2c 20 31 30 29 0d 0a 0d 0a 0d 0a 2f |R(10, 10)....../| 00001590 2f 20 50 45 52 46 4f 52 4d 2e 4f 50 20 70 65 72 |/ PERFORM.OP per| 000015a0 66 6f 72 6d 73 20 74 68 65 20 63 75 72 72 65 6e |forms the curren| 000015b0 74 20 6f 70 65 72 61 74 69 6f 6e 20 6f 6e 20 74 |t operation on t| 000015c0 68 65 20 74 77 6f 20 6e 75 6d 62 65 72 73 2c 0d |he two numbers,.| 000015d0 0a 2f 2f 20 73 74 6f 72 65 73 20 74 68 65 20 72 |.// stores the r| 000015e0 65 73 75 6c 74 20 69 6e 20 74 68 65 20 66 69 72 |esult in the fir| 000015f0 73 74 20 61 6e 64 20 64 69 73 70 6c 61 79 73 20 |st and displays | 00001600 74 68 65 20 72 65 73 75 6c 74 2e 0d 0a 0d 0a 41 |the result.....A| 00001610 4e 44 20 50 45 52 46 4f 52 4d 2e 4f 50 28 29 20 |ND PERFORM.OP() | 00001620 42 45 0d 0a 24 28 20 46 50 45 58 43 45 50 20 3a |BE..$( FPEXCEP :| 00001630 3d 20 30 0d 0a 20 20 20 28 4f 50 3d 27 2b 27 20 |= 0.. (OP='+' | 00001640 2d 3e 20 46 50 4c 55 53 2c 0d 0a 20 20 20 20 4f |-> FPLUS,.. O| 00001650 50 3d 27 2d 27 20 2d 3e 20 46 4d 49 4e 55 53 2c |P='-' -> FMINUS,| 00001660 0d 0a 20 20 20 20 4f 50 3d 27 2f 27 20 2d 3e 20 |.. OP='/' -> | 00001670 46 44 49 56 2c 20 46 4d 55 4c 54 29 28 56 31 2c |FDIV, FMULT)(V1,| 00001680 20 56 32 2c 20 56 31 29 0d 0a 20 20 20 57 52 49 | V2, V1).. WRI| 00001690 54 45 4e 55 4d 28 56 31 2c 20 46 50 45 58 43 45 |TENUM(V1, FPEXCE| 000016a0 50 29 0d 0a 24 29 0d 0a 0d 0a 0d 0a 2f 2f 20 52 |P)..$)......// R| 000016b0 45 53 45 54 20 72 65 2d 69 6e 69 74 69 61 6c 69 |ESET re-initiali| 000016c0 73 65 73 20 74 68 65 20 6e 75 6d 62 65 72 73 2c |ses the numbers,| 000016d0 20 74 68 65 20 63 75 72 72 65 6e 74 20 6f 70 65 | the current ope| 000016e0 72 61 74 69 6f 6e 20 61 6e 64 20 74 68 65 0d 0a |ration and the..| 000016f0 2f 2f 20 73 74 61 74 65 2e 20 20 49 74 20 65 78 |// state. It ex| 00001700 69 74 73 20 62 79 20 4c 4f 4e 47 4a 55 4d 50 69 |its by LONGJUMPi| 00001710 6e 67 20 74 6f 20 74 68 65 20 72 65 73 74 61 72 |ng to the restar| 00001720 74 20 70 6f 69 6e 74 20 69 6e 20 53 54 41 52 54 |t point in START| 00001730 2e 0d 0a 0d 0a 41 4e 44 20 52 45 53 45 54 28 29 |.....AND RESET()| 00001740 20 42 45 0d 0a 24 28 20 46 46 4c 4f 41 54 28 30 | BE..$( FFLOAT(0| 00001750 2c 20 56 31 29 0d 0a 20 20 20 46 46 4c 4f 41 54 |, V1).. FFLOAT| 00001760 28 30 2c 20 56 32 29 0d 0a 20 20 20 4f 50 20 3a |(0, V2).. OP :| 00001770 3d 20 27 2b 27 0d 0a 20 20 20 53 54 41 54 45 20 |= '+'.. STATE | 00001780 3a 3d 20 53 2e 4e 55 4d 31 0d 0a 20 20 20 57 52 |:= S.NUM1.. WR| 00001790 49 54 45 4e 55 4d 28 56 31 2c 20 30 29 20 20 20 |ITENUM(V1, 0) | 000017a0 20 2f 2f 20 64 69 73 70 6c 61 79 20 27 30 27 0d | // display '0'.| 000017b0 0a 20 20 20 4c 4f 4e 47 4a 55 4d 50 28 52 45 53 |. LONGJUMP(RES| 000017c0 2e 4c 45 56 2c 20 52 45 53 2e 4c 41 42 29 0d 0a |.LEV, RES.LAB)..| 000017d0 24 29 0d 0a 0d 0a 0d 0a 2f 2f 20 53 54 41 54 45 |$)......// STATE| 000017e0 43 4f 4c 20 69 73 20 61 20 6c 6f 63 61 6c 20 70 |COL is a local p| 000017f0 72 6f 63 65 64 75 72 65 20 75 73 65 64 20 69 6e |rocedure used in| 00001800 20 77 72 69 74 69 6e 67 20 74 68 65 20 73 74 61 | writing the sta| 00001810 74 75 73 20 6c 69 6e 65 2e 0d 0a 0d 0a 41 4e 44 |tus line.....AND| 00001820 20 53 54 41 54 45 43 4f 4c 28 53 29 20 42 45 0d | STATECOL(S) BE.| 00001830 0a 20 20 20 57 52 42 49 4e 28 53 54 41 54 45 20 |. WRBIN(STATE | 00001840 3d 20 53 20 2d 3e 20 43 2e 57 48 49 54 45 2c 20 |= S -> C.WHITE, | 00001850 43 2e 4d 41 47 45 4e 54 41 29 0d 0a 0d 0a 0d 0a |C.MAGENTA)......| 00001860 2f 2f 20 57 52 49 54 45 4e 55 4d 20 64 69 73 70 |// WRITENUM disp| 00001870 6c 61 79 73 20 61 20 64 6f 75 62 6c 65 2d 68 65 |lays a double-he| 00001880 69 67 68 74 20 6e 75 6d 62 65 72 20 69 6e 20 74 |ight number in t| 00001890 68 65 20 61 70 70 72 6f 70 72 69 61 74 65 0d 0a |he appropriate..| 000018a0 2f 2f 20 70 6f 73 69 74 69 6f 6e 2e 0d 0a 0d 0a |// position.....| 000018b0 41 4e 44 20 57 52 49 54 45 4e 55 4d 28 4e 55 4d |AND WRITENUM(NUM| 000018c0 2c 20 45 52 52 43 4f 44 45 29 20 42 45 0d 0a 24 |, ERRCODE) BE..$| 000018d0 28 20 4e 55 4d 50 4f 53 28 29 20 20 20 20 20 20 |( NUMPOS() | 000018e0 20 20 20 20 20 20 20 20 20 20 2f 2f 20 70 6f 73 | // pos| 000018f0 69 74 69 6f 6e 20 63 75 72 73 6f 72 0d 0a 20 20 |ition cursor.. | 00001900 20 57 52 42 49 4e 28 31 33 37 29 20 20 20 20 20 | WRBIN(137) | 00001910 20 20 20 20 20 20 20 20 20 2f 2f 20 63 61 6e 63 | // canc| 00001920 65 6c 20 66 6c 61 73 68 69 6e 67 0d 0a 20 20 20 |el flashing.. | 00001930 44 49 53 50 4e 55 4d 28 4e 55 4d 2c 20 45 52 52 |DISPNUM(NUM, ERR| 00001940 43 4f 44 45 29 20 20 20 2f 2f 20 64 69 73 70 6c |CODE) // displ| 00001950 61 79 20 6e 75 6d 62 65 72 0d 0a 20 20 20 43 4f |ay number.. CO| 00001960 50 59 4c 31 4c 32 28 29 20 20 20 20 20 20 20 20 |PYL1L2() | 00001970 20 20 20 20 20 20 2f 2f 20 63 6f 70 79 20 74 6f | // copy to| 00001980 20 73 65 63 6f 6e 64 20 6c 69 6e 65 0d 0a 24 29 | second line..$)| 00001990 0d 0a 0d 0a |....| 00001994