Home » Archimedes archive » Acorn User » AU 1997-10 A.adf » Extras » Apple][e/PD/BOB/ARMBOB/doc/History

Apple][e/PD/BOB/ARMBOB/doc/History

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 » Archimedes archive » Acorn User » AU 1997-10 A.adf » Extras
Filename: Apple][e/PD/BOB/ARMBOB/doc/History
Read OK:
File size: 0DED bytes
Load address: 0000
Exec address: 0000
File contents
21/1/94    Got sources from
           ftp: ftp.mv.com:/pub/ddj/packages/bob15.arc

Changes:

#    Altered syntax from 

     f(x, .. ;a, .. ) { ... }

     to

     f(x, .. ){ local a, .. ; .... }

#   Implemented input() using OS_ReadLine.

#   Implemented sysvar() using OS_ReadVarVal.

#   Implemented switch-block

      switch (<expression>)
      {
       case <expression> : <statement> [ break; ]
       ........................................
      [ default : <statement> [ break; ] ]
      }

    The only difference from standard C is that a single statement 
    follows the colon (or a block enclosed in braces).

    This required two new opcodes for the virtual-machine:
    OP_DUP and OP_DROP.

#   Altered action of comparison operators to allow comparisons between 
    strings as well as integers.

#   Introduced 'repeat' as a variant to 'do' with 'until <test> ;' as
    an alternative to 'while <test> ;'.

#   Implemented rnd() and seed() for random integers.

#   Implemented quit() to terminate program with a message string.

#   Altered system() to oscli().

#   Allow @,$ and ` in identifiers.

#   Implement swi(n,regs) to call SWI number n, with registers in
    vector regs (regs = newvector(8)).

#   Implement @(s) for address of string s, and $(adr) to get the
    string at adr.

#   Allow positive hexadecimal numbers with a & prefix. Lower case
    a,b,c,d,e,f are used for 10,11,12,13,14,15.

#   Added built-in constants, TRUE, FALSE, names for the types, and
    SWI numbers.

#   Removed bug in switch/case. Added built-in val() to convert
    strings to integers.

#   Modify swi to take string arguments.

#   Implement peek and poke for reading and writing words to buffers.

#   Improve switch/case structure so as to conform completely with
    C syntax.

#   Change syntax of peek and poke, so that `(), �(), $() peek bytes,
    words and strings respectively, and ``(), ��(), $$() poke.

#   Added the 

      in buffer put { item1; ..... itemn; }

    construction, for initializing window/sprite/menu/message blocks.
    This requires the addition of two more opcodes, OP_ADR, OP_PUTNEXT.

#   Added an internal variable w_task to hold task handle. Implemented
        wimp_report(s), 
        wimp_close_down(),
        wimp_init(version, name, mesg_list). 

#   Modified Bobint.c to give an error message if a function is not 
    found. Altered the flag decoding in bob.c to be able to trace and
    debug projects.

#   Cured another bug in switch statement.

<-   version 1.01       02/03/94

#   Cured bug in h.string.string

#   Misprint found in compiler source: 
    changed an instance of SHL_EQ to SHR_EQ. >>= now works.

<- version 1.02        06/06/94

#   Added throwback for compiler errors. 25/06/94

#   Added the start_task(command) function. This works whether
    from a BobFile or a BobTask. 

#   Hand crafted the code for the interpreter and memory management
    in assembler.

<- version 1.03        14/07/94

#   Added floating point arithmetic.  28/11/94

<- version 2.0         29/11/94

#  Added vector { ... } and enum { ... } constructs. 1/12/94
   Used Aeby's active text for manual.
   Added draw library.
   Eased syntactic restrictions in project files.

<- version 2.1         25/12/94

#  Some more example software from Prof.G.N.Ward:
    Algorithms for square roots, matrix handling, number formatting

#  Some internal changes to permit more than 32K codespace.
   -quit added to Taskwindow commands.
   A correction to the draw package.

<- version 2.2         25/07/96

00000000  32 31 2f 31 2f 39 34 20  20 20 20 47 6f 74 20 73  |21/1/94    Got s|
00000010  6f 75 72 63 65 73 20 66  72 6f 6d 0a 20 20 20 20  |ources from.    |
00000020  20 20 20 20 20 20 20 66  74 70 3a 20 66 74 70 2e  |       ftp: ftp.|
00000030  6d 76 2e 63 6f 6d 3a 2f  70 75 62 2f 64 64 6a 2f  |mv.com:/pub/ddj/|
00000040  70 61 63 6b 61 67 65 73  2f 62 6f 62 31 35 2e 61  |packages/bob15.a|
00000050  72 63 0a 0a 43 68 61 6e  67 65 73 3a 0a 0a 23 20  |rc..Changes:..# |
00000060  20 20 20 41 6c 74 65 72  65 64 20 73 79 6e 74 61  |   Altered synta|
00000070  78 20 66 72 6f 6d 20 0a  0a 20 20 20 20 20 66 28  |x from ..     f(|
00000080  78 2c 20 2e 2e 20 3b 61  2c 20 2e 2e 20 29 20 7b  |x, .. ;a, .. ) {|
00000090  20 2e 2e 2e 20 7d 0a 0a  20 20 20 20 20 74 6f 0a  | ... }..     to.|
000000a0  0a 20 20 20 20 20 66 28  78 2c 20 2e 2e 20 29 7b  |.     f(x, .. ){|
000000b0  20 6c 6f 63 61 6c 20 61  2c 20 2e 2e 20 3b 20 2e  | local a, .. ; .|
000000c0  2e 2e 2e 20 7d 0a 0a 23  20 20 20 49 6d 70 6c 65  |... }..#   Imple|
000000d0  6d 65 6e 74 65 64 20 69  6e 70 75 74 28 29 20 75  |mented input() u|
000000e0  73 69 6e 67 20 4f 53 5f  52 65 61 64 4c 69 6e 65  |sing OS_ReadLine|
000000f0  2e 0a 0a 23 20 20 20 49  6d 70 6c 65 6d 65 6e 74  |...#   Implement|
00000100  65 64 20 73 79 73 76 61  72 28 29 20 75 73 69 6e  |ed sysvar() usin|
00000110  67 20 4f 53 5f 52 65 61  64 56 61 72 56 61 6c 2e  |g OS_ReadVarVal.|
00000120  0a 0a 23 20 20 20 49 6d  70 6c 65 6d 65 6e 74 65  |..#   Implemente|
00000130  64 20 73 77 69 74 63 68  2d 62 6c 6f 63 6b 0a 0a  |d switch-block..|
00000140  20 20 20 20 20 20 73 77  69 74 63 68 20 28 3c 65  |      switch (<e|
00000150  78 70 72 65 73 73 69 6f  6e 3e 29 0a 20 20 20 20  |xpression>).    |
00000160  20 20 7b 0a 20 20 20 20  20 20 20 63 61 73 65 20  |  {.       case |
00000170  3c 65 78 70 72 65 73 73  69 6f 6e 3e 20 3a 20 3c  |<expression> : <|
00000180  73 74 61 74 65 6d 65 6e  74 3e 20 5b 20 62 72 65  |statement> [ bre|
00000190  61 6b 3b 20 5d 0a 20 20  20 20 20 20 20 2e 2e 2e  |ak; ].       ...|
000001a0  2e 2e 2e 2e 2e 2e 2e 2e  2e 2e 2e 2e 2e 2e 2e 2e  |................|
*
000001c0  2e 2e 2e 2e 2e 0a 20 20  20 20 20 20 5b 20 64 65  |......      [ de|
000001d0  66 61 75 6c 74 20 3a 20  3c 73 74 61 74 65 6d 65  |fault : <stateme|
000001e0  6e 74 3e 20 5b 20 62 72  65 61 6b 3b 20 5d 20 5d  |nt> [ break; ] ]|
000001f0  0a 20 20 20 20 20 20 7d  0a 0a 20 20 20 20 54 68  |.      }..    Th|
00000200  65 20 6f 6e 6c 79 20 64  69 66 66 65 72 65 6e 63  |e only differenc|
00000210  65 20 66 72 6f 6d 20 73  74 61 6e 64 61 72 64 20  |e from standard |
00000220  43 20 69 73 20 74 68 61  74 20 61 20 73 69 6e 67  |C is that a sing|
00000230  6c 65 20 73 74 61 74 65  6d 65 6e 74 20 0a 20 20  |le statement .  |
00000240  20 20 66 6f 6c 6c 6f 77  73 20 74 68 65 20 63 6f  |  follows the co|
00000250  6c 6f 6e 20 28 6f 72 20  61 20 62 6c 6f 63 6b 20  |lon (or a block |
00000260  65 6e 63 6c 6f 73 65 64  20 69 6e 20 62 72 61 63  |enclosed in brac|
00000270  65 73 29 2e 0a 0a 20 20  20 20 54 68 69 73 20 72  |es)...    This r|
00000280  65 71 75 69 72 65 64 20  74 77 6f 20 6e 65 77 20  |equired two new |
00000290  6f 70 63 6f 64 65 73 20  66 6f 72 20 74 68 65 20  |opcodes for the |
000002a0  76 69 72 74 75 61 6c 2d  6d 61 63 68 69 6e 65 3a  |virtual-machine:|
000002b0  0a 20 20 20 20 4f 50 5f  44 55 50 20 61 6e 64 20  |.    OP_DUP and |
000002c0  4f 50 5f 44 52 4f 50 2e  0a 0a 23 20 20 20 41 6c  |OP_DROP...#   Al|
000002d0  74 65 72 65 64 20 61 63  74 69 6f 6e 20 6f 66 20  |tered action of |
000002e0  63 6f 6d 70 61 72 69 73  6f 6e 20 6f 70 65 72 61  |comparison opera|
000002f0  74 6f 72 73 20 74 6f 20  61 6c 6c 6f 77 20 63 6f  |tors to allow co|
00000300  6d 70 61 72 69 73 6f 6e  73 20 62 65 74 77 65 65  |mparisons betwee|
00000310  6e 20 0a 20 20 20 20 73  74 72 69 6e 67 73 20 61  |n .    strings a|
00000320  73 20 77 65 6c 6c 20 61  73 20 69 6e 74 65 67 65  |s well as intege|
00000330  72 73 2e 0a 0a 23 20 20  20 49 6e 74 72 6f 64 75  |rs...#   Introdu|
00000340  63 65 64 20 27 72 65 70  65 61 74 27 20 61 73 20  |ced 'repeat' as |
00000350  61 20 76 61 72 69 61 6e  74 20 74 6f 20 27 64 6f  |a variant to 'do|
00000360  27 20 77 69 74 68 20 27  75 6e 74 69 6c 20 3c 74  |' with 'until <t|
00000370  65 73 74 3e 20 3b 27 20  61 73 0a 20 20 20 20 61  |est> ;' as.    a|
00000380  6e 20 61 6c 74 65 72 6e  61 74 69 76 65 20 74 6f  |n alternative to|
00000390  20 27 77 68 69 6c 65 20  3c 74 65 73 74 3e 20 3b  | 'while <test> ;|
000003a0  27 2e 0a 0a 23 20 20 20  49 6d 70 6c 65 6d 65 6e  |'...#   Implemen|
000003b0  74 65 64 20 72 6e 64 28  29 20 61 6e 64 20 73 65  |ted rnd() and se|
000003c0  65 64 28 29 20 66 6f 72  20 72 61 6e 64 6f 6d 20  |ed() for random |
000003d0  69 6e 74 65 67 65 72 73  2e 0a 0a 23 20 20 20 49  |integers...#   I|
000003e0  6d 70 6c 65 6d 65 6e 74  65 64 20 71 75 69 74 28  |mplemented quit(|
000003f0  29 20 74 6f 20 74 65 72  6d 69 6e 61 74 65 20 70  |) to terminate p|
00000400  72 6f 67 72 61 6d 20 77  69 74 68 20 61 20 6d 65  |rogram with a me|
00000410  73 73 61 67 65 20 73 74  72 69 6e 67 2e 0a 0a 23  |ssage string...#|
00000420  20 20 20 41 6c 74 65 72  65 64 20 73 79 73 74 65  |   Altered syste|
00000430  6d 28 29 20 74 6f 20 6f  73 63 6c 69 28 29 2e 0a  |m() to oscli()..|
00000440  0a 23 20 20 20 41 6c 6c  6f 77 20 40 2c 24 20 61  |.#   Allow @,$ a|
00000450  6e 64 20 60 20 69 6e 20  69 64 65 6e 74 69 66 69  |nd ` in identifi|
00000460  65 72 73 2e 0a 0a 23 20  20 20 49 6d 70 6c 65 6d  |ers...#   Implem|
00000470  65 6e 74 20 73 77 69 28  6e 2c 72 65 67 73 29 20  |ent swi(n,regs) |
00000480  74 6f 20 63 61 6c 6c 20  53 57 49 20 6e 75 6d 62  |to call SWI numb|
00000490  65 72 20 6e 2c 20 77 69  74 68 20 72 65 67 69 73  |er n, with regis|
000004a0  74 65 72 73 20 69 6e 0a  20 20 20 20 76 65 63 74  |ters in.    vect|
000004b0  6f 72 20 72 65 67 73 20  28 72 65 67 73 20 3d 20  |or regs (regs = |
000004c0  6e 65 77 76 65 63 74 6f  72 28 38 29 29 2e 0a 0a  |newvector(8))...|
000004d0  23 20 20 20 49 6d 70 6c  65 6d 65 6e 74 20 40 28  |#   Implement @(|
000004e0  73 29 20 66 6f 72 20 61  64 64 72 65 73 73 20 6f  |s) for address o|
000004f0  66 20 73 74 72 69 6e 67  20 73 2c 20 61 6e 64 20  |f string s, and |
00000500  24 28 61 64 72 29 20 74  6f 20 67 65 74 20 74 68  |$(adr) to get th|
00000510  65 0a 20 20 20 20 73 74  72 69 6e 67 20 61 74 20  |e.    string at |
00000520  61 64 72 2e 0a 0a 23 20  20 20 41 6c 6c 6f 77 20  |adr...#   Allow |
00000530  70 6f 73 69 74 69 76 65  20 68 65 78 61 64 65 63  |positive hexadec|
00000540  69 6d 61 6c 20 6e 75 6d  62 65 72 73 20 77 69 74  |imal numbers wit|
00000550  68 20 61 20 26 20 70 72  65 66 69 78 2e 20 4c 6f  |h a & prefix. Lo|
00000560  77 65 72 20 63 61 73 65  0a 20 20 20 20 61 2c 62  |wer case.    a,b|
00000570  2c 63 2c 64 2c 65 2c 66  20 61 72 65 20 75 73 65  |,c,d,e,f are use|
00000580  64 20 66 6f 72 20 31 30  2c 31 31 2c 31 32 2c 31  |d for 10,11,12,1|
00000590  33 2c 31 34 2c 31 35 2e  0a 0a 23 20 20 20 41 64  |3,14,15...#   Ad|
000005a0  64 65 64 20 62 75 69 6c  74 2d 69 6e 20 63 6f 6e  |ded built-in con|
000005b0  73 74 61 6e 74 73 2c 20  54 52 55 45 2c 20 46 41  |stants, TRUE, FA|
000005c0  4c 53 45 2c 20 6e 61 6d  65 73 20 66 6f 72 20 74  |LSE, names for t|
000005d0  68 65 20 74 79 70 65 73  2c 20 61 6e 64 0a 20 20  |he types, and.  |
000005e0  20 20 53 57 49 20 6e 75  6d 62 65 72 73 2e 0a 0a  |  SWI numbers...|
000005f0  23 20 20 20 52 65 6d 6f  76 65 64 20 62 75 67 20  |#   Removed bug |
00000600  69 6e 20 73 77 69 74 63  68 2f 63 61 73 65 2e 20  |in switch/case. |
00000610  41 64 64 65 64 20 62 75  69 6c 74 2d 69 6e 20 76  |Added built-in v|
00000620  61 6c 28 29 20 74 6f 20  63 6f 6e 76 65 72 74 0a  |al() to convert.|
00000630  20 20 20 20 73 74 72 69  6e 67 73 20 74 6f 20 69  |    strings to i|
00000640  6e 74 65 67 65 72 73 2e  0a 0a 23 20 20 20 4d 6f  |ntegers...#   Mo|
00000650  64 69 66 79 20 73 77 69  20 74 6f 20 74 61 6b 65  |dify swi to take|
00000660  20 73 74 72 69 6e 67 20  61 72 67 75 6d 65 6e 74  | string argument|
00000670  73 2e 0a 0a 23 20 20 20  49 6d 70 6c 65 6d 65 6e  |s...#   Implemen|
00000680  74 20 70 65 65 6b 20 61  6e 64 20 70 6f 6b 65 20  |t peek and poke |
00000690  66 6f 72 20 72 65 61 64  69 6e 67 20 61 6e 64 20  |for reading and |
000006a0  77 72 69 74 69 6e 67 20  77 6f 72 64 73 20 74 6f  |writing words to|
000006b0  20 62 75 66 66 65 72 73  2e 0a 0a 23 20 20 20 49  | buffers...#   I|
000006c0  6d 70 72 6f 76 65 20 73  77 69 74 63 68 2f 63 61  |mprove switch/ca|
000006d0  73 65 20 73 74 72 75 63  74 75 72 65 20 73 6f 20  |se structure so |
000006e0  61 73 20 74 6f 20 63 6f  6e 66 6f 72 6d 20 63 6f  |as to conform co|
000006f0  6d 70 6c 65 74 65 6c 79  20 77 69 74 68 0a 20 20  |mpletely with.  |
00000700  20 20 43 20 73 79 6e 74  61 78 2e 0a 0a 23 20 20  |  C syntax...#  |
00000710  20 43 68 61 6e 67 65 20  73 79 6e 74 61 78 20 6f  | Change syntax o|
00000720  66 20 70 65 65 6b 20 61  6e 64 20 70 6f 6b 65 2c  |f peek and poke,|
00000730  20 73 6f 20 74 68 61 74  20 60 28 29 2c 20 a3 28  | so that `(), .(|
00000740  29 2c 20 24 28 29 20 70  65 65 6b 20 62 79 74 65  |), $() peek byte|
00000750  73 2c 0a 20 20 20 20 77  6f 72 64 73 20 61 6e 64  |s,.    words and|
00000760  20 73 74 72 69 6e 67 73  20 72 65 73 70 65 63 74  | strings respect|
00000770  69 76 65 6c 79 2c 20 61  6e 64 20 60 60 28 29 2c  |ively, and ``(),|
00000780  20 a3 a3 28 29 2c 20 24  24 28 29 20 70 6f 6b 65  | ..(), $$() poke|
00000790  2e 0a 0a 23 20 20 20 41  64 64 65 64 20 74 68 65  |...#   Added the|
000007a0  20 0a 0a 20 20 20 20 20  20 69 6e 20 62 75 66 66  | ..      in buff|
000007b0  65 72 20 70 75 74 20 7b  20 69 74 65 6d 31 3b 20  |er put { item1; |
000007c0  2e 2e 2e 2e 2e 20 69 74  65 6d 6e 3b 20 7d 0a 0a  |..... itemn; }..|
000007d0  20 20 20 20 63 6f 6e 73  74 72 75 63 74 69 6f 6e  |    construction|
000007e0  2c 20 66 6f 72 20 69 6e  69 74 69 61 6c 69 7a 69  |, for initializi|
000007f0  6e 67 20 77 69 6e 64 6f  77 2f 73 70 72 69 74 65  |ng window/sprite|
00000800  2f 6d 65 6e 75 2f 6d 65  73 73 61 67 65 20 62 6c  |/menu/message bl|
00000810  6f 63 6b 73 2e 0a 20 20  20 20 54 68 69 73 20 72  |ocks..    This r|
00000820  65 71 75 69 72 65 73 20  74 68 65 20 61 64 64 69  |equires the addi|
00000830  74 69 6f 6e 20 6f 66 20  74 77 6f 20 6d 6f 72 65  |tion of two more|
00000840  20 6f 70 63 6f 64 65 73  2c 20 4f 50 5f 41 44 52  | opcodes, OP_ADR|
00000850  2c 20 4f 50 5f 50 55 54  4e 45 58 54 2e 0a 0a 23  |, OP_PUTNEXT...#|
00000860  20 20 20 41 64 64 65 64  20 61 6e 20 69 6e 74 65  |   Added an inte|
00000870  72 6e 61 6c 20 76 61 72  69 61 62 6c 65 20 77 5f  |rnal variable w_|
00000880  74 61 73 6b 20 74 6f 20  68 6f 6c 64 20 74 61 73  |task to hold tas|
00000890  6b 20 68 61 6e 64 6c 65  2e 20 49 6d 70 6c 65 6d  |k handle. Implem|
000008a0  65 6e 74 65 64 0a 20 20  20 20 20 20 20 20 77 69  |ented.        wi|
000008b0  6d 70 5f 72 65 70 6f 72  74 28 73 29 2c 20 0a 20  |mp_report(s), . |
000008c0  20 20 20 20 20 20 20 77  69 6d 70 5f 63 6c 6f 73  |       wimp_clos|
000008d0  65 5f 64 6f 77 6e 28 29  2c 0a 20 20 20 20 20 20  |e_down(),.      |
000008e0  20 20 77 69 6d 70 5f 69  6e 69 74 28 76 65 72 73  |  wimp_init(vers|
000008f0  69 6f 6e 2c 20 6e 61 6d  65 2c 20 6d 65 73 67 5f  |ion, name, mesg_|
00000900  6c 69 73 74 29 2e 20 0a  0a 23 20 20 20 4d 6f 64  |list). ..#   Mod|
00000910  69 66 69 65 64 20 42 6f  62 69 6e 74 2e 63 20 74  |ified Bobint.c t|
00000920  6f 20 67 69 76 65 20 61  6e 20 65 72 72 6f 72 20  |o give an error |
00000930  6d 65 73 73 61 67 65 20  69 66 20 61 20 66 75 6e  |message if a fun|
00000940  63 74 69 6f 6e 20 69 73  20 6e 6f 74 20 0a 20 20  |ction is not .  |
00000950  20 20 66 6f 75 6e 64 2e  20 41 6c 74 65 72 65 64  |  found. Altered|
00000960  20 74 68 65 20 66 6c 61  67 20 64 65 63 6f 64 69  | the flag decodi|
00000970  6e 67 20 69 6e 20 62 6f  62 2e 63 20 74 6f 20 62  |ng in bob.c to b|
00000980  65 20 61 62 6c 65 20 74  6f 20 74 72 61 63 65 20  |e able to trace |
00000990  61 6e 64 0a 20 20 20 20  64 65 62 75 67 20 70 72  |and.    debug pr|
000009a0  6f 6a 65 63 74 73 2e 0a  0a 23 20 20 20 43 75 72  |ojects...#   Cur|
000009b0  65 64 20 61 6e 6f 74 68  65 72 20 62 75 67 20 69  |ed another bug i|
000009c0  6e 20 73 77 69 74 63 68  20 73 74 61 74 65 6d 65  |n switch stateme|
000009d0  6e 74 2e 0a 0a 3c 2d 20  20 20 76 65 72 73 69 6f  |nt...<-   versio|
000009e0  6e 20 31 2e 30 31 20 20  20 20 20 20 20 30 32 2f  |n 1.01       02/|
000009f0  30 33 2f 39 34 0a 0a 23  20 20 20 43 75 72 65 64  |03/94..#   Cured|
00000a00  20 62 75 67 20 69 6e 20  68 2e 73 74 72 69 6e 67  | bug in h.string|
00000a10  2e 73 74 72 69 6e 67 0a  0a 23 20 20 20 4d 69 73  |.string..#   Mis|
00000a20  70 72 69 6e 74 20 66 6f  75 6e 64 20 69 6e 20 63  |print found in c|
00000a30  6f 6d 70 69 6c 65 72 20  73 6f 75 72 63 65 3a 20  |ompiler source: |
00000a40  0a 20 20 20 20 63 68 61  6e 67 65 64 20 61 6e 20  |.    changed an |
00000a50  69 6e 73 74 61 6e 63 65  20 6f 66 20 53 48 4c 5f  |instance of SHL_|
00000a60  45 51 20 74 6f 20 53 48  52 5f 45 51 2e 20 3e 3e  |EQ to SHR_EQ. >>|
00000a70  3d 20 6e 6f 77 20 77 6f  72 6b 73 2e 0a 0a 3c 2d  |= now works...<-|
00000a80  20 76 65 72 73 69 6f 6e  20 31 2e 30 32 20 20 20  | version 1.02   |
00000a90  20 20 20 20 20 30 36 2f  30 36 2f 39 34 0a 0a 23  |     06/06/94..#|
00000aa0  20 20 20 41 64 64 65 64  20 74 68 72 6f 77 62 61  |   Added throwba|
00000ab0  63 6b 20 66 6f 72 20 63  6f 6d 70 69 6c 65 72 20  |ck for compiler |
00000ac0  65 72 72 6f 72 73 2e 20  32 35 2f 30 36 2f 39 34  |errors. 25/06/94|
00000ad0  0a 0a 23 20 20 20 41 64  64 65 64 20 74 68 65 20  |..#   Added the |
00000ae0  73 74 61 72 74 5f 74 61  73 6b 28 63 6f 6d 6d 61  |start_task(comma|
00000af0  6e 64 29 20 66 75 6e 63  74 69 6f 6e 2e 20 54 68  |nd) function. Th|
00000b00  69 73 20 77 6f 72 6b 73  20 77 68 65 74 68 65 72  |is works whether|
00000b10  0a 20 20 20 20 66 72 6f  6d 20 61 20 42 6f 62 46  |.    from a BobF|
00000b20  69 6c 65 20 6f 72 20 61  20 42 6f 62 54 61 73 6b  |ile or a BobTask|
00000b30  2e 20 0a 0a 23 20 20 20  48 61 6e 64 20 63 72 61  |. ..#   Hand cra|
00000b40  66 74 65 64 20 74 68 65  20 63 6f 64 65 20 66 6f  |fted the code fo|
00000b50  72 20 74 68 65 20 69 6e  74 65 72 70 72 65 74 65  |r the interprete|
00000b60  72 20 61 6e 64 20 6d 65  6d 6f 72 79 20 6d 61 6e  |r and memory man|
00000b70  61 67 65 6d 65 6e 74 0a  20 20 20 20 69 6e 20 61  |agement.    in a|
00000b80  73 73 65 6d 62 6c 65 72  2e 0a 0a 3c 2d 20 76 65  |ssembler...<- ve|
00000b90  72 73 69 6f 6e 20 31 2e  30 33 20 20 20 20 20 20  |rsion 1.03      |
00000ba0  20 20 31 34 2f 30 37 2f  39 34 0a 0a 23 20 20 20  |  14/07/94..#   |
00000bb0  41 64 64 65 64 20 66 6c  6f 61 74 69 6e 67 20 70  |Added floating p|
00000bc0  6f 69 6e 74 20 61 72 69  74 68 6d 65 74 69 63 2e  |oint arithmetic.|
00000bd0  20 20 32 38 2f 31 31 2f  39 34 0a 0a 3c 2d 20 76  |  28/11/94..<- v|
00000be0  65 72 73 69 6f 6e 20 32  2e 30 20 20 20 20 20 20  |ersion 2.0      |
00000bf0  20 20 20 32 39 2f 31 31  2f 39 34 0a 0a 23 20 20  |   29/11/94..#  |
00000c00  41 64 64 65 64 20 76 65  63 74 6f 72 20 7b 20 2e  |Added vector { .|
00000c10  2e 2e 20 7d 20 61 6e 64  20 65 6e 75 6d 20 7b 20  |.. } and enum { |
00000c20  2e 2e 2e 20 7d 20 63 6f  6e 73 74 72 75 63 74 73  |... } constructs|
00000c30  2e 20 31 2f 31 32 2f 39  34 0a 20 20 20 55 73 65  |. 1/12/94.   Use|
00000c40  64 20 41 65 62 79 27 73  20 61 63 74 69 76 65 20  |d Aeby's active |
00000c50  74 65 78 74 20 66 6f 72  20 6d 61 6e 75 61 6c 2e  |text for manual.|
00000c60  0a 20 20 20 41 64 64 65  64 20 64 72 61 77 20 6c  |.   Added draw l|
00000c70  69 62 72 61 72 79 2e 0a  20 20 20 45 61 73 65 64  |ibrary..   Eased|
00000c80  20 73 79 6e 74 61 63 74  69 63 20 72 65 73 74 72  | syntactic restr|
00000c90  69 63 74 69 6f 6e 73 20  69 6e 20 70 72 6f 6a 65  |ictions in proje|
00000ca0  63 74 20 66 69 6c 65 73  2e 0a 0a 3c 2d 20 76 65  |ct files...<- ve|
00000cb0  72 73 69 6f 6e 20 32 2e  31 20 20 20 20 20 20 20  |rsion 2.1       |
00000cc0  20 20 32 35 2f 31 32 2f  39 34 0a 0a 23 20 20 53  |  25/12/94..#  S|
00000cd0  6f 6d 65 20 6d 6f 72 65  20 65 78 61 6d 70 6c 65  |ome more example|
00000ce0  20 73 6f 66 74 77 61 72  65 20 66 72 6f 6d 20 50  | software from P|
00000cf0  72 6f 66 2e 47 2e 4e 2e  57 61 72 64 3a 0a 20 20  |rof.G.N.Ward:.  |
00000d00  20 20 41 6c 67 6f 72 69  74 68 6d 73 20 66 6f 72  |  Algorithms for|
00000d10  20 73 71 75 61 72 65 20  72 6f 6f 74 73 2c 20 6d  | square roots, m|
00000d20  61 74 72 69 78 20 68 61  6e 64 6c 69 6e 67 2c 20  |atrix handling, |
00000d30  6e 75 6d 62 65 72 20 66  6f 72 6d 61 74 74 69 6e  |number formattin|
00000d40  67 0a 0a 23 20 20 53 6f  6d 65 20 69 6e 74 65 72  |g..#  Some inter|
00000d50  6e 61 6c 20 63 68 61 6e  67 65 73 20 74 6f 20 70  |nal changes to p|
00000d60  65 72 6d 69 74 20 6d 6f  72 65 20 74 68 61 6e 20  |ermit more than |
00000d70  33 32 4b 20 63 6f 64 65  73 70 61 63 65 2e 0a 20  |32K codespace.. |
00000d80  20 20 2d 71 75 69 74 20  61 64 64 65 64 20 74 6f  |  -quit added to|
00000d90  20 54 61 73 6b 77 69 6e  64 6f 77 20 63 6f 6d 6d  | Taskwindow comm|
00000da0  61 6e 64 73 2e 0a 20 20  20 41 20 63 6f 72 72 65  |ands..   A corre|
00000db0  63 74 69 6f 6e 20 74 6f  20 74 68 65 20 64 72 61  |ction to the dra|
00000dc0  77 20 70 61 63 6b 61 67  65 2e 0a 0a 3c 2d 20 76  |w package...<- v|
00000dd0  65 72 73 69 6f 6e 20 32  2e 32 20 20 20 20 20 20  |ersion 2.2      |
00000de0  20 20 20 32 35 2f 30 37  2f 39 36 0a 0a           |   25/07/96..|
00000ded