Home » Personal collection » Acorn DFS disks » dfs_box03_disk08b_rq_forth_toolkit.scp » 120-139

120-139

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_disk08b_rq_forth_toolkit.scp
Filename: 120-139
Read OK:
File size: 2800 bytes
Load address: 5000
Exec address: 5000
Duplicates

There is 1 duplicate copy of this file in the archive:

File contents
( Miscellaneous Words     Load )                                  decimal  121 126 thru           decimal  127 128 thru           decimal  129 130 thru           decimal  131 132 thru   exit                                                                       This is the Load Block          for the Misc Words                                                                                                                                                                                                         ( Shift and Rotate         1/6 )                                code SHIFT       ( n1 n2 __ n3 )   top lda,  tay,                  ne if,                            pl if,  begin,                    2nd asl,  2nd 1+ rol,           dey,  eq until,               else,  begin,                     2nd 1+ lsr,  2nd ror,           iny,  eq until,               endif,                        endif,  pop jmp,  end-code                                                                                                   ( Shift and Rotate         2/6 )                                code DSHIFT       ( d1 n __ d2 )   top lda,  tay,                  ne if,                            pl if,  begin,                    2nd asl,  2nd 1+ rol,           3rd rol,  3rd 1+ rol,           dey,  eq until,               else,  begin,                     3rd 1+ lsr,  3rd ror,           2nd 1+ ror,  2nd ror,           iny,  eq until,               endif,                        endif,  pop jmp,  end-code                                   ( Shift and Rotate         3/6 )                                code ASHIFT      ( n1 n2 __ n3 )   top lda,  tay,                  ne if,                            pl if,  begin,                    2nd asl,  2nd 1+ rol,           dey,  eq until,               else,  begin,                     2nd 1+ lda,   .a asl,           2nd 1+ ror,  2nd ror,           iny,  eq until,               endif,                        endif,  pop jmp,  end-code                                                                   ( Shift and Rotate         4/6 )                                code DASHIFT      ( d1 n __ d2 )   top lda,  tay,                  ne if,                            pl if,  begin,                    2nd asl,  2nd 1+ rol,           3rd rol,  3rd 1+ rol,           dey,  eq until,               else,  begin,                     3rd 1+ lda,   .a asl,           3rd 1+ ror,  3rd ror,           2nd 1+ ror,  2nd ror,           iny,  eq until,               endif,                        endif,  pop jmp,  end-code   ( Shift and Rotate         5/6 )                                code ROTATE      ( n1 n2 __ n2 )   top lda,  tay,                  ne if,                            pl if,  begin,                    2nd 1+ lda,   .a asl,           2nd rol,  2nd 1+ rol,           dey,  eq until,               else,  begin,                     2nd lda,  .a lsr,               2nd 1+ ror,  2nd ror,           iny,  eq until,               endif,                        endif,  pop jmp,  end-code                                   ( Shift and Rotate         6/6 )                                code DROTATE      ( d1 n __ d2 )   top lda,  tay,                  ne if,                            pl if,  begin,                    3rd 1+ lda,   .a asl,           2nd rol,  2nd 1+ rol,           3rd rol,  3rd 1+ rol,           dey,  eq until,               else,  begin,                     2nd lda,  .a lsr,               3rd 1+ ror,  3rd ror,           2nd 1+ ror,  2nd ror,           iny,  eq until, endif,      endif,  pop jmp,  end-code   ( Listing to Printer       1/2 )                                  hex                                                           : PR      2 emit ;        ( __ ): -PR     3 emit ;        ( __ ): MARGIN  5 spaces ;      ( __ ): .LNUM   3 .r space ;  ( n __ ): .BNUM                 ( n __ )   ."     block " .lnum ;       : .BLOCK                ( n __ )   10 0 do cr margin                 i .lnum i over .line          loop cr drop ;               : ?PAGE                 ( f __ )   if cr cr else page endif ;   ( Listing to Printer       2/2 )  hex                           : TRIAD             ( n1 n2 __ )   pr 1+ over do i over - 3 mod    ?page margin i .bnum cr         i .block loop drop -pr ;                                     : 2TRIAD            ( n1 n2 __ )   pr 1+ over do i over - 6 mod    ?page margin i .bnum  i 1+ i'   = if cr i .block else             18 spaces i 1+ .bnum cr         10 0 do cr margin i .lnum       i j (line) type 2 spaces        i .lnum i j 1+ .line loop     cr endif 2 +loop drop -pr ;  ( Text Joystick Handling       )  hex                           ( Position the text cursor     )( within an area 40 x 25       )                                : TSCALE            ( n1 __ n2 )   2/ 7FFF and  28 7FFF */ ;    : TCHAN             ( n1 __ n2 )   80 editor *fx forth tscale ; : THORIZ            ( n1 __ n2 )   tchan      0 max  27 min ;   : TVERT             ( n1 __ n2 )   tchan  8 - 0 max  18 min ;   : TSTICK                ( n __ )   dup 1+ tvert swap thoriz        editor tab forth ;           ( Graphic Joystick Handling    )  hex                           : PLOT              ( X Y n __ )   19 emit emit swap unpack emit   emit unpack emit emit ;      : GSCALE            ( n1 __ n2 )   2/ 7FFF and 580 7FFF */ ;    : GCHAN             ( n1 __ n2 )   80 editor *fx forth gscale ; : GHORIZ            ( n1 __ n2 )   gchan 40 - 0 max 4FF min ;   : GVERT             ( n1 __ n2 )   gchan C0 - 0 max 3FF min ;   : GSTICK                ( n __ )   dup ghoriz swap                 1+ gvert 3FF swap - 4 plot ; ( File Handling            1/2 )  hex                             variable FCHAN ( file channel)  ' emit 16 + @ constant POP      ' key   6 + @ constant PUSH0A                                   create BPUT  here -2 allot ,     BD c, 0D00 ,  ( lda STACK,x )   AC c, fchan , ( ldy FCHAN   )   20 c, FFD4 ,  ( jsr OSBPUT  )   4C c, pop ,   ( jmp POP     )  create BGET  here -2 allot ,     AC c, fchan , ( ldy FCHAN   )   20 c, FFD7 ,  ( jsr OSBGET  )   4C c, push0a , ( jmp PUSH0A )                                ( File Handling            2/2 )  hex                           : %FILENAME          ( __ addr )   bl word count >r dup            c@ 0= ?error" filename?" r>     0A min over + 0D swap c! ;                                   : OPEN-FILE               ( __ )   fchan @ ?error" already open"   %filename cr 80 FFCE call       fchan ! ( chan in A not Y ! )   drop ;                                                       : CLOSE-FILE              ( __ )   0 0 FFCE call drop drop         0 fchan ! ;                  ( Empty                        )                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ( Empty                        )                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ( Empty                        )                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ( Empty                        )                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ( Empty                        )                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ( Empty                        )                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ( Empty                        )                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
00000000  28 20 4d 69 73 63 65 6c  6c 61 6e 65 6f 75 73 20  |( Miscellaneous |
00000010  57 6f 72 64 73 20 20 20  20 20 4c 6f 61 64 20 29  |Words     Load )|
00000020  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00000040  20 20 64 65 63 69 6d 61  6c 20 20 31 32 31 20 31  |  decimal  121 1|
00000050  32 36 20 74 68 72 75 20  20 20 20 20 20 20 20 20  |26 thru         |
00000060  20 20 64 65 63 69 6d 61  6c 20 20 31 32 37 20 31  |  decimal  127 1|
00000070  32 38 20 74 68 72 75 20  20 20 20 20 20 20 20 20  |28 thru         |
00000080  20 20 64 65 63 69 6d 61  6c 20 20 31 32 39 20 31  |  decimal  129 1|
00000090  33 30 20 74 68 72 75 20  20 20 20 20 20 20 20 20  |30 thru         |
000000a0  20 20 64 65 63 69 6d 61  6c 20 20 31 33 31 20 31  |  decimal  131 1|
000000b0  33 32 20 74 68 72 75 20  20 20 65 78 69 74 20 20  |32 thru   exit  |
000000c0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00000100  20 20 20 20 20 54 68 69  73 20 69 73 20 74 68 65  |     This is the|
00000110  20 4c 6f 61 64 20 42 6c  6f 63 6b 20 20 20 20 20  | Load Block     |
00000120  20 20 20 20 20 66 6f 72  20 74 68 65 20 4d 69 73  |     for the Mis|
00000130  63 20 57 6f 72 64 73 20  20 20 20 20 20 20 20 20  |c Words         |
00000140  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00000200  28 20 53 68 69 66 74 20  61 6e 64 20 52 6f 74 61  |( Shift and Rota|
00000210  74 65 20 20 20 20 20 20  20 20 20 31 2f 36 20 29  |te         1/6 )|
00000220  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00000240  63 6f 64 65 20 53 48 49  46 54 20 20 20 20 20 20  |code SHIFT      |
00000250  20 28 20 6e 31 20 6e 32  20 5f 5f 20 6e 33 20 29  | ( n1 n2 __ n3 )|
00000260  20 20 20 74 6f 70 20 6c  64 61 2c 20 20 74 61 79  |   top lda,  tay|
00000270  2c 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |,               |
00000280  20 20 20 6e 65 20 69 66  2c 20 20 20 20 20 20 20  |   ne if,       |
00000290  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
000002a0  20 20 20 20 20 70 6c 20  69 66 2c 20 20 62 65 67  |     pl if,  beg|
000002b0  69 6e 2c 20 20 20 20 20  20 20 20 20 20 20 20 20  |in,             |
000002c0  20 20 20 20 20 20 20 32  6e 64 20 61 73 6c 2c 20  |       2nd asl, |
000002d0  20 32 6e 64 20 31 2b 20  72 6f 6c 2c 20 20 20 20  | 2nd 1+ rol,    |
000002e0  20 20 20 20 20 20 20 64  65 79 2c 20 20 65 71 20  |       dey,  eq |
000002f0  75 6e 74 69 6c 2c 20 20  20 20 20 20 20 20 20 20  |until,          |
00000300  20 20 20 20 20 65 6c 73  65 2c 20 20 62 65 67 69  |     else,  begi|
00000310  6e 2c 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |n,              |
00000320  20 20 20 20 20 20 20 32  6e 64 20 31 2b 20 6c 73  |       2nd 1+ ls|
00000330  72 2c 20 20 32 6e 64 20  72 6f 72 2c 20 20 20 20  |r,  2nd ror,    |
00000340  20 20 20 20 20 20 20 69  6e 79 2c 20 20 65 71 20  |       iny,  eq |
00000350  75 6e 74 69 6c 2c 20 20  20 20 20 20 20 20 20 20  |until,          |
00000360  20 20 20 20 20 65 6e 64  69 66 2c 20 20 20 20 20  |     endif,     |
00000370  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000380  20 20 20 65 6e 64 69 66  2c 20 20 70 6f 70 20 6a  |   endif,  pop j|
00000390  6d 70 2c 20 20 65 6e 64  2d 63 6f 64 65 20 20 20  |mp,  end-code   |
000003a0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00000400  28 20 53 68 69 66 74 20  61 6e 64 20 52 6f 74 61  |( Shift and Rota|
00000410  74 65 20 20 20 20 20 20  20 20 20 32 2f 36 20 29  |te         2/6 )|
00000420  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00000440  63 6f 64 65 20 44 53 48  49 46 54 20 20 20 20 20  |code DSHIFT     |
00000450  20 20 28 20 64 31 20 6e  20 5f 5f 20 64 32 20 29  |  ( d1 n __ d2 )|
00000460  20 20 20 74 6f 70 20 6c  64 61 2c 20 20 74 61 79  |   top lda,  tay|
00000470  2c 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |,               |
00000480  20 20 20 6e 65 20 69 66  2c 20 20 20 20 20 20 20  |   ne if,       |
00000490  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
000004a0  20 20 20 20 20 70 6c 20  69 66 2c 20 20 62 65 67  |     pl if,  beg|
000004b0  69 6e 2c 20 20 20 20 20  20 20 20 20 20 20 20 20  |in,             |
000004c0  20 20 20 20 20 20 20 32  6e 64 20 61 73 6c 2c 20  |       2nd asl, |
000004d0  20 32 6e 64 20 31 2b 20  72 6f 6c 2c 20 20 20 20  | 2nd 1+ rol,    |
000004e0  20 20 20 20 20 20 20 33  72 64 20 72 6f 6c 2c 20  |       3rd rol, |
000004f0  20 33 72 64 20 31 2b 20  72 6f 6c 2c 20 20 20 20  | 3rd 1+ rol,    |
00000500  20 20 20 20 20 20 20 64  65 79 2c 20 20 65 71 20  |       dey,  eq |
00000510  75 6e 74 69 6c 2c 20 20  20 20 20 20 20 20 20 20  |until,          |
00000520  20 20 20 20 20 65 6c 73  65 2c 20 20 62 65 67 69  |     else,  begi|
00000530  6e 2c 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |n,              |
00000540  20 20 20 20 20 20 20 33  72 64 20 31 2b 20 6c 73  |       3rd 1+ ls|
00000550  72 2c 20 20 33 72 64 20  72 6f 72 2c 20 20 20 20  |r,  3rd ror,    |
00000560  20 20 20 20 20 20 20 32  6e 64 20 31 2b 20 72 6f  |       2nd 1+ ro|
00000570  72 2c 20 20 32 6e 64 20  72 6f 72 2c 20 20 20 20  |r,  2nd ror,    |
00000580  20 20 20 20 20 20 20 69  6e 79 2c 20 20 65 71 20  |       iny,  eq |
00000590  75 6e 74 69 6c 2c 20 20  20 20 20 20 20 20 20 20  |until,          |
000005a0  20 20 20 20 20 65 6e 64  69 66 2c 20 20 20 20 20  |     endif,     |
000005b0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
000005c0  20 20 20 65 6e 64 69 66  2c 20 20 70 6f 70 20 6a  |   endif,  pop j|
000005d0  6d 70 2c 20 20 65 6e 64  2d 63 6f 64 65 20 20 20  |mp,  end-code   |
000005e0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00000600  28 20 53 68 69 66 74 20  61 6e 64 20 52 6f 74 61  |( Shift and Rota|
00000610  74 65 20 20 20 20 20 20  20 20 20 33 2f 36 20 29  |te         3/6 )|
00000620  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00000640  63 6f 64 65 20 41 53 48  49 46 54 20 20 20 20 20  |code ASHIFT     |
00000650  20 28 20 6e 31 20 6e 32  20 5f 5f 20 6e 33 20 29  | ( n1 n2 __ n3 )|
00000660  20 20 20 74 6f 70 20 6c  64 61 2c 20 20 74 61 79  |   top lda,  tay|
00000670  2c 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |,               |
00000680  20 20 20 6e 65 20 69 66  2c 20 20 20 20 20 20 20  |   ne if,       |
00000690  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
000006a0  20 20 20 20 20 70 6c 20  69 66 2c 20 20 62 65 67  |     pl if,  beg|
000006b0  69 6e 2c 20 20 20 20 20  20 20 20 20 20 20 20 20  |in,             |
000006c0  20 20 20 20 20 20 20 32  6e 64 20 61 73 6c 2c 20  |       2nd asl, |
000006d0  20 32 6e 64 20 31 2b 20  72 6f 6c 2c 20 20 20 20  | 2nd 1+ rol,    |
000006e0  20 20 20 20 20 20 20 64  65 79 2c 20 20 65 71 20  |       dey,  eq |
000006f0  75 6e 74 69 6c 2c 20 20  20 20 20 20 20 20 20 20  |until,          |
00000700  20 20 20 20 20 65 6c 73  65 2c 20 20 62 65 67 69  |     else,  begi|
00000710  6e 2c 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |n,              |
00000720  20 20 20 20 20 20 20 32  6e 64 20 31 2b 20 6c 64  |       2nd 1+ ld|
00000730  61 2c 20 20 20 2e 61 20  61 73 6c 2c 20 20 20 20  |a,   .a asl,    |
00000740  20 20 20 20 20 20 20 32  6e 64 20 31 2b 20 72 6f  |       2nd 1+ ro|
00000750  72 2c 20 20 32 6e 64 20  72 6f 72 2c 20 20 20 20  |r,  2nd ror,    |
00000760  20 20 20 20 20 20 20 69  6e 79 2c 20 20 65 71 20  |       iny,  eq |
00000770  75 6e 74 69 6c 2c 20 20  20 20 20 20 20 20 20 20  |until,          |
00000780  20 20 20 20 20 65 6e 64  69 66 2c 20 20 20 20 20  |     endif,     |
00000790  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
000007a0  20 20 20 65 6e 64 69 66  2c 20 20 70 6f 70 20 6a  |   endif,  pop j|
000007b0  6d 70 2c 20 20 65 6e 64  2d 63 6f 64 65 20 20 20  |mp,  end-code   |
000007c0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00000800  28 20 53 68 69 66 74 20  61 6e 64 20 52 6f 74 61  |( Shift and Rota|
00000810  74 65 20 20 20 20 20 20  20 20 20 34 2f 36 20 29  |te         4/6 )|
00000820  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00000840  63 6f 64 65 20 44 41 53  48 49 46 54 20 20 20 20  |code DASHIFT    |
00000850  20 20 28 20 64 31 20 6e  20 5f 5f 20 64 32 20 29  |  ( d1 n __ d2 )|
00000860  20 20 20 74 6f 70 20 6c  64 61 2c 20 20 74 61 79  |   top lda,  tay|
00000870  2c 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |,               |
00000880  20 20 20 6e 65 20 69 66  2c 20 20 20 20 20 20 20  |   ne if,       |
00000890  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
000008a0  20 20 20 20 20 70 6c 20  69 66 2c 20 20 62 65 67  |     pl if,  beg|
000008b0  69 6e 2c 20 20 20 20 20  20 20 20 20 20 20 20 20  |in,             |
000008c0  20 20 20 20 20 20 20 32  6e 64 20 61 73 6c 2c 20  |       2nd asl, |
000008d0  20 32 6e 64 20 31 2b 20  72 6f 6c 2c 20 20 20 20  | 2nd 1+ rol,    |
000008e0  20 20 20 20 20 20 20 33  72 64 20 72 6f 6c 2c 20  |       3rd rol, |
000008f0  20 33 72 64 20 31 2b 20  72 6f 6c 2c 20 20 20 20  | 3rd 1+ rol,    |
00000900  20 20 20 20 20 20 20 64  65 79 2c 20 20 65 71 20  |       dey,  eq |
00000910  75 6e 74 69 6c 2c 20 20  20 20 20 20 20 20 20 20  |until,          |
00000920  20 20 20 20 20 65 6c 73  65 2c 20 20 62 65 67 69  |     else,  begi|
00000930  6e 2c 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |n,              |
00000940  20 20 20 20 20 20 20 33  72 64 20 31 2b 20 6c 64  |       3rd 1+ ld|
00000950  61 2c 20 20 20 2e 61 20  61 73 6c 2c 20 20 20 20  |a,   .a asl,    |
00000960  20 20 20 20 20 20 20 33  72 64 20 31 2b 20 72 6f  |       3rd 1+ ro|
00000970  72 2c 20 20 33 72 64 20  72 6f 72 2c 20 20 20 20  |r,  3rd ror,    |
00000980  20 20 20 20 20 20 20 32  6e 64 20 31 2b 20 72 6f  |       2nd 1+ ro|
00000990  72 2c 20 20 32 6e 64 20  72 6f 72 2c 20 20 20 20  |r,  2nd ror,    |
000009a0  20 20 20 20 20 20 20 69  6e 79 2c 20 20 65 71 20  |       iny,  eq |
000009b0  75 6e 74 69 6c 2c 20 20  20 20 20 20 20 20 20 20  |until,          |
000009c0  20 20 20 20 20 65 6e 64  69 66 2c 20 20 20 20 20  |     endif,     |
000009d0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
000009e0  20 20 20 65 6e 64 69 66  2c 20 20 70 6f 70 20 6a  |   endif,  pop j|
000009f0  6d 70 2c 20 20 65 6e 64  2d 63 6f 64 65 20 20 20  |mp,  end-code   |
00000a00  28 20 53 68 69 66 74 20  61 6e 64 20 52 6f 74 61  |( Shift and Rota|
00000a10  74 65 20 20 20 20 20 20  20 20 20 35 2f 36 20 29  |te         5/6 )|
00000a20  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00000a40  63 6f 64 65 20 52 4f 54  41 54 45 20 20 20 20 20  |code ROTATE     |
00000a50  20 28 20 6e 31 20 6e 32  20 5f 5f 20 6e 32 20 29  | ( n1 n2 __ n2 )|
00000a60  20 20 20 74 6f 70 20 6c  64 61 2c 20 20 74 61 79  |   top lda,  tay|
00000a70  2c 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |,               |
00000a80  20 20 20 6e 65 20 69 66  2c 20 20 20 20 20 20 20  |   ne if,       |
00000a90  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000aa0  20 20 20 20 20 70 6c 20  69 66 2c 20 20 62 65 67  |     pl if,  beg|
00000ab0  69 6e 2c 20 20 20 20 20  20 20 20 20 20 20 20 20  |in,             |
00000ac0  20 20 20 20 20 20 20 32  6e 64 20 31 2b 20 6c 64  |       2nd 1+ ld|
00000ad0  61 2c 20 20 20 2e 61 20  61 73 6c 2c 20 20 20 20  |a,   .a asl,    |
00000ae0  20 20 20 20 20 20 20 32  6e 64 20 72 6f 6c 2c 20  |       2nd rol, |
00000af0  20 32 6e 64 20 31 2b 20  72 6f 6c 2c 20 20 20 20  | 2nd 1+ rol,    |
00000b00  20 20 20 20 20 20 20 64  65 79 2c 20 20 65 71 20  |       dey,  eq |
00000b10  75 6e 74 69 6c 2c 20 20  20 20 20 20 20 20 20 20  |until,          |
00000b20  20 20 20 20 20 65 6c 73  65 2c 20 20 62 65 67 69  |     else,  begi|
00000b30  6e 2c 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |n,              |
00000b40  20 20 20 20 20 20 20 32  6e 64 20 6c 64 61 2c 20  |       2nd lda, |
00000b50  20 2e 61 20 6c 73 72 2c  20 20 20 20 20 20 20 20  | .a lsr,        |
00000b60  20 20 20 20 20 20 20 32  6e 64 20 31 2b 20 72 6f  |       2nd 1+ ro|
00000b70  72 2c 20 20 32 6e 64 20  72 6f 72 2c 20 20 20 20  |r,  2nd ror,    |
00000b80  20 20 20 20 20 20 20 69  6e 79 2c 20 20 65 71 20  |       iny,  eq |
00000b90  75 6e 74 69 6c 2c 20 20  20 20 20 20 20 20 20 20  |until,          |
00000ba0  20 20 20 20 20 65 6e 64  69 66 2c 20 20 20 20 20  |     endif,     |
00000bb0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000bc0  20 20 20 65 6e 64 69 66  2c 20 20 70 6f 70 20 6a  |   endif,  pop j|
00000bd0  6d 70 2c 20 20 65 6e 64  2d 63 6f 64 65 20 20 20  |mp,  end-code   |
00000be0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00000c00  28 20 53 68 69 66 74 20  61 6e 64 20 52 6f 74 61  |( Shift and Rota|
00000c10  74 65 20 20 20 20 20 20  20 20 20 36 2f 36 20 29  |te         6/6 )|
00000c20  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00000c40  63 6f 64 65 20 44 52 4f  54 41 54 45 20 20 20 20  |code DROTATE    |
00000c50  20 20 28 20 64 31 20 6e  20 5f 5f 20 64 32 20 29  |  ( d1 n __ d2 )|
00000c60  20 20 20 74 6f 70 20 6c  64 61 2c 20 20 74 61 79  |   top lda,  tay|
00000c70  2c 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |,               |
00000c80  20 20 20 6e 65 20 69 66  2c 20 20 20 20 20 20 20  |   ne if,       |
00000c90  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000ca0  20 20 20 20 20 70 6c 20  69 66 2c 20 20 62 65 67  |     pl if,  beg|
00000cb0  69 6e 2c 20 20 20 20 20  20 20 20 20 20 20 20 20  |in,             |
00000cc0  20 20 20 20 20 20 20 33  72 64 20 31 2b 20 6c 64  |       3rd 1+ ld|
00000cd0  61 2c 20 20 20 2e 61 20  61 73 6c 2c 20 20 20 20  |a,   .a asl,    |
00000ce0  20 20 20 20 20 20 20 32  6e 64 20 72 6f 6c 2c 20  |       2nd rol, |
00000cf0  20 32 6e 64 20 31 2b 20  72 6f 6c 2c 20 20 20 20  | 2nd 1+ rol,    |
00000d00  20 20 20 20 20 20 20 33  72 64 20 72 6f 6c 2c 20  |       3rd rol, |
00000d10  20 33 72 64 20 31 2b 20  72 6f 6c 2c 20 20 20 20  | 3rd 1+ rol,    |
00000d20  20 20 20 20 20 20 20 64  65 79 2c 20 20 65 71 20  |       dey,  eq |
00000d30  75 6e 74 69 6c 2c 20 20  20 20 20 20 20 20 20 20  |until,          |
00000d40  20 20 20 20 20 65 6c 73  65 2c 20 20 62 65 67 69  |     else,  begi|
00000d50  6e 2c 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |n,              |
00000d60  20 20 20 20 20 20 20 32  6e 64 20 6c 64 61 2c 20  |       2nd lda, |
00000d70  20 2e 61 20 6c 73 72 2c  20 20 20 20 20 20 20 20  | .a lsr,        |
00000d80  20 20 20 20 20 20 20 33  72 64 20 31 2b 20 72 6f  |       3rd 1+ ro|
00000d90  72 2c 20 20 33 72 64 20  72 6f 72 2c 20 20 20 20  |r,  3rd ror,    |
00000da0  20 20 20 20 20 20 20 32  6e 64 20 31 2b 20 72 6f  |       2nd 1+ ro|
00000db0  72 2c 20 20 32 6e 64 20  72 6f 72 2c 20 20 20 20  |r,  2nd ror,    |
00000dc0  20 20 20 20 20 20 20 69  6e 79 2c 20 20 65 71 20  |       iny,  eq |
00000dd0  75 6e 74 69 6c 2c 20 65  6e 64 69 66 2c 20 20 20  |until, endif,   |
00000de0  20 20 20 65 6e 64 69 66  2c 20 20 70 6f 70 20 6a  |   endif,  pop j|
00000df0  6d 70 2c 20 20 65 6e 64  2d 63 6f 64 65 20 20 20  |mp,  end-code   |
00000e00  28 20 4c 69 73 74 69 6e  67 20 74 6f 20 50 72 69  |( Listing to Pri|
00000e10  6e 74 65 72 20 20 20 20  20 20 20 31 2f 32 20 29  |nter       1/2 )|
00000e20  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00000e40  20 20 68 65 78 20 20 20  20 20 20 20 20 20 20 20  |  hex           |
00000e50  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00000e80  3a 20 50 52 20 20 20 20  20 20 32 20 65 6d 69 74  |: PR      2 emit|
00000e90  20 3b 20 20 20 20 20 20  20 20 28 20 5f 5f 20 29  | ;        ( __ )|
00000ea0  3a 20 2d 50 52 20 20 20  20 20 33 20 65 6d 69 74  |: -PR     3 emit|
00000eb0  20 3b 20 20 20 20 20 20  20 20 28 20 5f 5f 20 29  | ;        ( __ )|
00000ec0  3a 20 4d 41 52 47 49 4e  20 20 35 20 73 70 61 63  |: MARGIN  5 spac|
00000ed0  65 73 20 3b 20 20 20 20  20 20 28 20 5f 5f 20 29  |es ;      ( __ )|
00000ee0  3a 20 2e 4c 4e 55 4d 20  20 20 33 20 2e 72 20 73  |: .LNUM   3 .r s|
00000ef0  70 61 63 65 20 3b 20 20  28 20 6e 20 5f 5f 20 29  |pace ;  ( n __ )|
00000f00  3a 20 2e 42 4e 55 4d 20  20 20 20 20 20 20 20 20  |: .BNUM         |
00000f10  20 20 20 20 20 20 20 20  28 20 6e 20 5f 5f 20 29  |        ( n __ )|
00000f20  20 20 20 2e 22 20 20 20  20 20 62 6c 6f 63 6b 20  |   ."     block |
00000f30  22 20 2e 6c 6e 75 6d 20  3b 20 20 20 20 20 20 20  |" .lnum ;       |
00000f40  3a 20 2e 42 4c 4f 43 4b  20 20 20 20 20 20 20 20  |: .BLOCK        |
00000f50  20 20 20 20 20 20 20 20  28 20 6e 20 5f 5f 20 29  |        ( n __ )|
00000f60  20 20 20 31 30 20 30 20  64 6f 20 63 72 20 6d 61  |   10 0 do cr ma|
00000f70  72 67 69 6e 20 20 20 20  20 20 20 20 20 20 20 20  |rgin            |
00000f80  20 20 20 20 20 69 20 2e  6c 6e 75 6d 20 69 20 6f  |     i .lnum i o|
00000f90  76 65 72 20 2e 6c 69 6e  65 20 20 20 20 20 20 20  |ver .line       |
00000fa0  20 20 20 6c 6f 6f 70 20  63 72 20 64 72 6f 70 20  |   loop cr drop |
00000fb0  3b 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |;               |
00000fc0  3a 20 3f 50 41 47 45 20  20 20 20 20 20 20 20 20  |: ?PAGE         |
00000fd0  20 20 20 20 20 20 20 20  28 20 66 20 5f 5f 20 29  |        ( f __ )|
00000fe0  20 20 20 69 66 20 63 72  20 63 72 20 65 6c 73 65  |   if cr cr else|
00000ff0  20 70 61 67 65 20 65 6e  64 69 66 20 3b 20 20 20  | page endif ;   |
00001000  28 20 4c 69 73 74 69 6e  67 20 74 6f 20 50 72 69  |( Listing to Pri|
00001010  6e 74 65 72 20 20 20 20  20 20 20 32 2f 32 20 29  |nter       2/2 )|
00001020  20 20 68 65 78 20 20 20  20 20 20 20 20 20 20 20  |  hex           |
00001030  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00001040  3a 20 54 52 49 41 44 20  20 20 20 20 20 20 20 20  |: TRIAD         |
00001050  20 20 20 20 28 20 6e 31  20 6e 32 20 5f 5f 20 29  |    ( n1 n2 __ )|
00001060  20 20 20 70 72 20 31 2b  20 6f 76 65 72 20 64 6f  |   pr 1+ over do|
00001070  20 69 20 6f 76 65 72 20  2d 20 33 20 6d 6f 64 20  | i over - 3 mod |
00001080  20 20 20 3f 70 61 67 65  20 6d 61 72 67 69 6e 20  |   ?page margin |
00001090  69 20 2e 62 6e 75 6d 20  63 72 20 20 20 20 20 20  |i .bnum cr      |
000010a0  20 20 20 69 20 2e 62 6c  6f 63 6b 20 6c 6f 6f 70  |   i .block loop|
000010b0  20 64 72 6f 70 20 2d 70  72 20 3b 20 20 20 20 20  | drop -pr ;     |
000010c0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
000010e0  3a 20 32 54 52 49 41 44  20 20 20 20 20 20 20 20  |: 2TRIAD        |
000010f0  20 20 20 20 28 20 6e 31  20 6e 32 20 5f 5f 20 29  |    ( n1 n2 __ )|
00001100  20 20 20 70 72 20 31 2b  20 6f 76 65 72 20 64 6f  |   pr 1+ over do|
00001110  20 69 20 6f 76 65 72 20  2d 20 36 20 6d 6f 64 20  | i over - 6 mod |
00001120  20 20 20 3f 70 61 67 65  20 6d 61 72 67 69 6e 20  |   ?page margin |
00001130  69 20 2e 62 6e 75 6d 20  20 69 20 31 2b 20 69 27  |i .bnum  i 1+ i'|
00001140  20 20 20 3d 20 69 66 20  63 72 20 69 20 2e 62 6c  |   = if cr i .bl|
00001150  6f 63 6b 20 65 6c 73 65  20 20 20 20 20 20 20 20  |ock else        |
00001160  20 20 20 20 20 31 38 20  73 70 61 63 65 73 20 69  |     18 spaces i|
00001170  20 31 2b 20 2e 62 6e 75  6d 20 63 72 20 20 20 20  | 1+ .bnum cr    |
00001180  20 20 20 20 20 31 30 20  30 20 64 6f 20 63 72 20  |     10 0 do cr |
00001190  6d 61 72 67 69 6e 20 69  20 2e 6c 6e 75 6d 20 20  |margin i .lnum  |
000011a0  20 20 20 20 20 69 20 6a  20 28 6c 69 6e 65 29 20  |     i j (line) |
000011b0  74 79 70 65 20 32 20 73  70 61 63 65 73 20 20 20  |type 2 spaces   |
000011c0  20 20 20 20 20 69 20 2e  6c 6e 75 6d 20 69 20 6a  |     i .lnum i j|
000011d0  20 31 2b 20 2e 6c 69 6e  65 20 6c 6f 6f 70 20 20  | 1+ .line loop  |
000011e0  20 20 20 63 72 20 65 6e  64 69 66 20 32 20 2b 6c  |   cr endif 2 +l|
000011f0  6f 6f 70 20 64 72 6f 70  20 2d 70 72 20 3b 20 20  |oop drop -pr ;  |
00001200  28 20 54 65 78 74 20 4a  6f 79 73 74 69 63 6b 20  |( Text Joystick |
00001210  48 61 6e 64 6c 69 6e 67  20 20 20 20 20 20 20 29  |Handling       )|
00001220  20 20 68 65 78 20 20 20  20 20 20 20 20 20 20 20  |  hex           |
00001230  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00001240  28 20 50 6f 73 69 74 69  6f 6e 20 74 68 65 20 74  |( Position the t|
00001250  65 78 74 20 63 75 72 73  6f 72 20 20 20 20 20 29  |ext cursor     )|
00001260  28 20 77 69 74 68 69 6e  20 61 6e 20 61 72 65 61  |( within an area|
00001270  20 34 30 20 78 20 32 35  20 20 20 20 20 20 20 29  | 40 x 25       )|
00001280  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
000012a0  3a 20 54 53 43 41 4c 45  20 20 20 20 20 20 20 20  |: TSCALE        |
000012b0  20 20 20 20 28 20 6e 31  20 5f 5f 20 6e 32 20 29  |    ( n1 __ n2 )|
000012c0  20 20 20 32 2f 20 37 46  46 46 20 61 6e 64 20 20  |   2/ 7FFF and  |
000012d0  32 38 20 37 46 46 46 20  2a 2f 20 3b 20 20 20 20  |28 7FFF */ ;    |
000012e0  3a 20 54 43 48 41 4e 20  20 20 20 20 20 20 20 20  |: TCHAN         |
000012f0  20 20 20 20 28 20 6e 31  20 5f 5f 20 6e 32 20 29  |    ( n1 __ n2 )|
00001300  20 20 20 38 30 20 65 64  69 74 6f 72 20 2a 66 78  |   80 editor *fx|
00001310  20 66 6f 72 74 68 20 74  73 63 61 6c 65 20 3b 20  | forth tscale ; |
00001320  3a 20 54 48 4f 52 49 5a  20 20 20 20 20 20 20 20  |: THORIZ        |
00001330  20 20 20 20 28 20 6e 31  20 5f 5f 20 6e 32 20 29  |    ( n1 __ n2 )|
00001340  20 20 20 74 63 68 61 6e  20 20 20 20 20 20 30 20  |   tchan      0 |
00001350  6d 61 78 20 20 32 37 20  6d 69 6e 20 3b 20 20 20  |max  27 min ;   |
00001360  3a 20 54 56 45 52 54 20  20 20 20 20 20 20 20 20  |: TVERT         |
00001370  20 20 20 20 28 20 6e 31  20 5f 5f 20 6e 32 20 29  |    ( n1 __ n2 )|
00001380  20 20 20 74 63 68 61 6e  20 20 38 20 2d 20 30 20  |   tchan  8 - 0 |
00001390  6d 61 78 20 20 31 38 20  6d 69 6e 20 3b 20 20 20  |max  18 min ;   |
000013a0  3a 20 54 53 54 49 43 4b  20 20 20 20 20 20 20 20  |: TSTICK        |
000013b0  20 20 20 20 20 20 20 20  28 20 6e 20 5f 5f 20 29  |        ( n __ )|
000013c0  20 20 20 64 75 70 20 31  2b 20 74 76 65 72 74 20  |   dup 1+ tvert |
000013d0  73 77 61 70 20 74 68 6f  72 69 7a 20 20 20 20 20  |swap thoriz     |
000013e0  20 20 20 65 64 69 74 6f  72 20 74 61 62 20 66 6f  |   editor tab fo|
000013f0  72 74 68 20 3b 20 20 20  20 20 20 20 20 20 20 20  |rth ;           |
00001400  28 20 47 72 61 70 68 69  63 20 4a 6f 79 73 74 69  |( Graphic Joysti|
00001410  63 6b 20 48 61 6e 64 6c  69 6e 67 20 20 20 20 29  |ck Handling    )|
00001420  20 20 68 65 78 20 20 20  20 20 20 20 20 20 20 20  |  hex           |
00001430  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00001440  3a 20 50 4c 4f 54 20 20  20 20 20 20 20 20 20 20  |: PLOT          |
00001450  20 20 20 20 28 20 58 20  59 20 6e 20 5f 5f 20 29  |    ( X Y n __ )|
00001460  20 20 20 31 39 20 65 6d  69 74 20 65 6d 69 74 20  |   19 emit emit |
00001470  73 77 61 70 20 75 6e 70  61 63 6b 20 65 6d 69 74  |swap unpack emit|
00001480  20 20 20 65 6d 69 74 20  75 6e 70 61 63 6b 20 65  |   emit unpack e|
00001490  6d 69 74 20 65 6d 69 74  20 3b 20 20 20 20 20 20  |mit emit ;      |
000014a0  3a 20 47 53 43 41 4c 45  20 20 20 20 20 20 20 20  |: GSCALE        |
000014b0  20 20 20 20 28 20 6e 31  20 5f 5f 20 6e 32 20 29  |    ( n1 __ n2 )|
000014c0  20 20 20 32 2f 20 37 46  46 46 20 61 6e 64 20 35  |   2/ 7FFF and 5|
000014d0  38 30 20 37 46 46 46 20  2a 2f 20 3b 20 20 20 20  |80 7FFF */ ;    |
000014e0  3a 20 47 43 48 41 4e 20  20 20 20 20 20 20 20 20  |: GCHAN         |
000014f0  20 20 20 20 28 20 6e 31  20 5f 5f 20 6e 32 20 29  |    ( n1 __ n2 )|
00001500  20 20 20 38 30 20 65 64  69 74 6f 72 20 2a 66 78  |   80 editor *fx|
00001510  20 66 6f 72 74 68 20 67  73 63 61 6c 65 20 3b 20  | forth gscale ; |
00001520  3a 20 47 48 4f 52 49 5a  20 20 20 20 20 20 20 20  |: GHORIZ        |
00001530  20 20 20 20 28 20 6e 31  20 5f 5f 20 6e 32 20 29  |    ( n1 __ n2 )|
00001540  20 20 20 67 63 68 61 6e  20 34 30 20 2d 20 30 20  |   gchan 40 - 0 |
00001550  6d 61 78 20 34 46 46 20  6d 69 6e 20 3b 20 20 20  |max 4FF min ;   |
00001560  3a 20 47 56 45 52 54 20  20 20 20 20 20 20 20 20  |: GVERT         |
00001570  20 20 20 20 28 20 6e 31  20 5f 5f 20 6e 32 20 29  |    ( n1 __ n2 )|
00001580  20 20 20 67 63 68 61 6e  20 43 30 20 2d 20 30 20  |   gchan C0 - 0 |
00001590  6d 61 78 20 33 46 46 20  6d 69 6e 20 3b 20 20 20  |max 3FF min ;   |
000015a0  3a 20 47 53 54 49 43 4b  20 20 20 20 20 20 20 20  |: GSTICK        |
000015b0  20 20 20 20 20 20 20 20  28 20 6e 20 5f 5f 20 29  |        ( n __ )|
000015c0  20 20 20 64 75 70 20 67  68 6f 72 69 7a 20 73 77  |   dup ghoriz sw|
000015d0  61 70 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |ap              |
000015e0  20 20 20 31 2b 20 67 76  65 72 74 20 33 46 46 20  |   1+ gvert 3FF |
000015f0  73 77 61 70 20 2d 20 34  20 70 6c 6f 74 20 3b 20  |swap - 4 plot ; |
00001600  28 20 46 69 6c 65 20 48  61 6e 64 6c 69 6e 67 20  |( File Handling |
00001610  20 20 20 20 20 20 20 20  20 20 20 31 2f 32 20 29  |           1/2 )|
00001620  20 20 68 65 78 20 20 20  20 20 20 20 20 20 20 20  |  hex           |
00001630  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00001640  20 20 76 61 72 69 61 62  6c 65 20 46 43 48 41 4e  |  variable FCHAN|
00001650  20 28 20 66 69 6c 65 20  63 68 61 6e 6e 65 6c 29  | ( file channel)|
00001660  20 20 27 20 65 6d 69 74  20 31 36 20 2b 20 40 20  |  ' emit 16 + @ |
00001670  63 6f 6e 73 74 61 6e 74  20 50 4f 50 20 20 20 20  |constant POP    |
00001680  20 20 27 20 6b 65 79 20  20 20 36 20 2b 20 40 20  |  ' key   6 + @ |
00001690  63 6f 6e 73 74 61 6e 74  20 50 55 53 48 30 41 20  |constant PUSH0A |
000016a0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
000016c0  20 20 63 72 65 61 74 65  20 42 50 55 54 20 20 68  |  create BPUT  h|
000016d0  65 72 65 20 2d 32 20 61  6c 6c 6f 74 20 2c 20 20  |ere -2 allot ,  |
000016e0  20 20 20 42 44 20 63 2c  20 30 44 30 30 20 2c 20  |   BD c, 0D00 , |
000016f0  20 28 20 6c 64 61 20 53  54 41 43 4b 2c 78 20 29  | ( lda STACK,x )|
00001700  20 20 20 41 43 20 63 2c  20 66 63 68 61 6e 20 2c  |   AC c, fchan ,|
00001710  20 28 20 6c 64 79 20 46  43 48 41 4e 20 20 20 29  | ( ldy FCHAN   )|
00001720  20 20 20 32 30 20 63 2c  20 46 46 44 34 20 2c 20  |   20 c, FFD4 , |
00001730  20 28 20 6a 73 72 20 4f  53 42 50 55 54 20 20 29  | ( jsr OSBPUT  )|
00001740  20 20 20 34 43 20 63 2c  20 70 6f 70 20 2c 20 20  |   4C c, pop ,  |
00001750  20 28 20 6a 6d 70 20 50  4f 50 20 20 20 20 20 29  | ( jmp POP     )|
00001760  20 20 63 72 65 61 74 65  20 42 47 45 54 20 20 68  |  create BGET  h|
00001770  65 72 65 20 2d 32 20 61  6c 6c 6f 74 20 2c 20 20  |ere -2 allot ,  |
00001780  20 20 20 41 43 20 63 2c  20 66 63 68 61 6e 20 2c  |   AC c, fchan ,|
00001790  20 28 20 6c 64 79 20 46  43 48 41 4e 20 20 20 29  | ( ldy FCHAN   )|
000017a0  20 20 20 32 30 20 63 2c  20 46 46 44 37 20 2c 20  |   20 c, FFD7 , |
000017b0  20 28 20 6a 73 72 20 4f  53 42 47 45 54 20 20 29  | ( jsr OSBGET  )|
000017c0  20 20 20 34 43 20 63 2c  20 70 75 73 68 30 61 20  |   4C c, push0a |
000017d0  2c 20 28 20 6a 6d 70 20  50 55 53 48 30 41 20 29  |, ( jmp PUSH0A )|
000017e0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00001800  28 20 46 69 6c 65 20 48  61 6e 64 6c 69 6e 67 20  |( File Handling |
00001810  20 20 20 20 20 20 20 20  20 20 20 32 2f 32 20 29  |           2/2 )|
00001820  20 20 68 65 78 20 20 20  20 20 20 20 20 20 20 20  |  hex           |
00001830  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00001840  3a 20 25 46 49 4c 45 4e  41 4d 45 20 20 20 20 20  |: %FILENAME     |
00001850  20 20 20 20 20 28 20 5f  5f 20 61 64 64 72 20 29  |     ( __ addr )|
00001860  20 20 20 62 6c 20 77 6f  72 64 20 63 6f 75 6e 74  |   bl word count|
00001870  20 3e 72 20 64 75 70 20  20 20 20 20 20 20 20 20  | >r dup         |
00001880  20 20 20 63 40 20 30 3d  20 3f 65 72 72 6f 72 22  |   c@ 0= ?error"|
00001890  20 66 69 6c 65 6e 61 6d  65 3f 22 20 72 3e 20 20  | filename?" r>  |
000018a0  20 20 20 30 41 20 6d 69  6e 20 6f 76 65 72 20 2b  |   0A min over +|
000018b0  20 30 44 20 73 77 61 70  20 63 21 20 3b 20 20 20  | 0D swap c! ;   |
000018c0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
000018e0  3a 20 4f 50 45 4e 2d 46  49 4c 45 20 20 20 20 20  |: OPEN-FILE     |
000018f0  20 20 20 20 20 20 20 20  20 20 28 20 5f 5f 20 29  |          ( __ )|
00001900  20 20 20 66 63 68 61 6e  20 40 20 3f 65 72 72 6f  |   fchan @ ?erro|
00001910  72 22 20 61 6c 72 65 61  64 79 20 6f 70 65 6e 22  |r" already open"|
00001920  20 20 20 25 66 69 6c 65  6e 61 6d 65 20 63 72 20  |   %filename cr |
00001930  38 30 20 46 46 43 45 20  63 61 6c 6c 20 20 20 20  |80 FFCE call    |
00001940  20 20 20 66 63 68 61 6e  20 21 20 28 20 63 68 61  |   fchan ! ( cha|
00001950  6e 20 69 6e 20 41 20 6e  6f 74 20 59 20 21 20 29  |n in A not Y ! )|
00001960  20 20 20 64 72 6f 70 20  3b 20 20 20 20 20 20 20  |   drop ;       |
00001970  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
000019a0  3a 20 43 4c 4f 53 45 2d  46 49 4c 45 20 20 20 20  |: CLOSE-FILE    |
000019b0  20 20 20 20 20 20 20 20  20 20 28 20 5f 5f 20 29  |          ( __ )|
000019c0  20 20 20 30 20 30 20 46  46 43 45 20 63 61 6c 6c  |   0 0 FFCE call|
000019d0  20 64 72 6f 70 20 64 72  6f 70 20 20 20 20 20 20  | drop drop      |
000019e0  20 20 20 30 20 66 63 68  61 6e 20 21 20 3b 20 20  |   0 fchan ! ;  |
000019f0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00001a00  28 20 45 6d 70 74 79 20  20 20 20 20 20 20 20 20  |( Empty         |
00001a10  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 29  |               )|
00001a20  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00001c00  28 20 45 6d 70 74 79 20  20 20 20 20 20 20 20 20  |( Empty         |
00001c10  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 29  |               )|
00001c20  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00001e00  28 20 45 6d 70 74 79 20  20 20 20 20 20 20 20 20  |( Empty         |
00001e10  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 29  |               )|
00001e20  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00002000  28 20 45 6d 70 74 79 20  20 20 20 20 20 20 20 20  |( Empty         |
00002010  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 29  |               )|
00002020  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00002200  28 20 45 6d 70 74 79 20  20 20 20 20 20 20 20 20  |( Empty         |
00002210  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 29  |               )|
00002220  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00002400  28 20 45 6d 70 74 79 20  20 20 20 20 20 20 20 20  |( Empty         |
00002410  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 29  |               )|
00002420  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00002600  28 20 45 6d 70 74 79 20  20 20 20 20 20 20 20 20  |( Empty         |
00002610  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 29  |               )|
00002620  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00002800
120-139.m0
120-139.m1
120-139.m2
120-139.m4
120-139.m5