Home » Archimedes archive » Acorn User » AU 1997-10 A.adf » Extras » Apple][e/PD/PIC/!PICbasic/!Help

Apple][e/PD/PIC/!PICbasic/!Help

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/PIC/!PICbasic/!Help
Read OK:
File size: 0ED6 bytes
Load address: 0000
Exec address: 0000
File contents
MANUAL FOR !PICbasic (Application)

This file describes the program PICbasic which assembles a tokenised BASIC
program containing PIC mnemonics into a binary file called 'OUTPUT' ready
to be programmed straight onto a chip,or tested in a simulator.
The manual and software are (C)1997 SPROW

INSTRUCTIONS-
If you're using this software from a BBC it will appear as a series of
directories,which you may wish to rename or move to save on typing in
long pathnames every time you use the software.

ADFS users on an 8 bit Acorn may prefer to delete the files !Sprites and
!Boot since they are meaningless.
If you're using this software from a machine running Risc OS then it will
appear as an application with a pretty icon.

Double click on the icon to start the interpretter (in Risc OS) or CHAIN the 
main program (on any Acorn).

If the source code program contains any unsupported commands then these will 
be bypassed and execution continues.See the text files in the 'Docs' directory
for more details.

Try typing "HELP" or "HELP." for some online help

If memory is short then a 'Squished' version is supplied,and running this in
shadow MODE 135 on a BBC Master 128 will also free up some more memory.

TIMING -
The program in 'K2Sauce',which is one of the examples,the following times 
were observed when run in V0.97 on the following machines
  Master 128 in MODE 135 = 2410s (about 40 minutes)
  Master 128 with 2nd processor = 1681s (about 28 minutes)
  Risc PC 700 with VRAM = 27s
  Risc PC StrongARM = 6s

EXIT MESSAGES-
None of these messages set ERR or ERL.If an error message occurs that IS
accompanied by a number on the screen then this signals that it was noticed by
BASIC and those with no number is an error that I've noticed

eg. Escape     1070
    >
    You've pressed Escape and it just happened that you were at line 1070 in
    the interpretter at the time,NOT line 1070 in the source code file.

eg. Missing #
    >
    My interpretter has rejected this as you've missed a # out of a mnemonic
    that requires a literal after it

"Command not supported" - only the commands indicated by HELP. are allowed
"No help available on that topic" - all help details can be shown using HELP.
"File not found" - filing system could not locate the source code
"Bad program" - BASIC files are assumed to start &0D and end &FF
"No program loaded" - you tried to LIST or RUN before loading the source
"No such mnemonic" - implies a non PIC mnemonic was used
"Bad option" - assembler pseudo mnemonic OPT must be < 8
"Too big" - generated by the binary interpretter,14 bit numbers maximum allowed
"Don't use the '$' operator" - generated by the expression interpretter
"Silly" - the mnemonic EQU was encountered and PICs can't have in line data
"Bad Binary" - binary numbers must be at least one character long
"Missing #" - instruction such as XORLW needs a hash then a numeric after it
"Missing ," - instruction such as MOVF needs two comma separated variables
"Syntax error";"No such variable";"Missing "";"Mistake" - as per BBC basic
"No FOR";"No TO";"Bad DIM";"Type mismatch";"Can't Match FOR" - as per BBC basic
"STOP";"Too many FORs";"No FN" - as per BBC basic

KNOWN PROBLEMS/FUTURE ENHANCEMENTS-
See the 'Limits' file for more details.
More keyword support will follow in the future.
It's all written in BASIC II syntax,and is as small as possible - so it can
infact be run on a BBC since that is where a lot of my software authoring
is done.

HISTORY-
See the 'Fixed' file for more details.
V0.90 Internal version,worked well enough to meet my requirements.
V0.95 Many enhancements,also assembly is now about 20% faster than in 0.90
V0.97 Improvements to FOR...NEXT structure and slight speed increase
V0.98 Adds STOP,CLS,and END keywords,plus HELP has been improved.Faster too
00000000  4d 41 4e 55 41 4c 20 46  4f 52 20 21 50 49 43 62  |MANUAL FOR !PICb|
00000010  61 73 69 63 20 28 41 70  70 6c 69 63 61 74 69 6f  |asic (Applicatio|
00000020  6e 29 0a 0a 54 68 69 73  20 66 69 6c 65 20 64 65  |n)..This file de|
00000030  73 63 72 69 62 65 73 20  74 68 65 20 70 72 6f 67  |scribes the prog|
00000040  72 61 6d 20 50 49 43 62  61 73 69 63 20 77 68 69  |ram PICbasic whi|
00000050  63 68 20 61 73 73 65 6d  62 6c 65 73 20 61 20 74  |ch assembles a t|
00000060  6f 6b 65 6e 69 73 65 64  20 42 41 53 49 43 0a 70  |okenised BASIC.p|
00000070  72 6f 67 72 61 6d 20 63  6f 6e 74 61 69 6e 69 6e  |rogram containin|
00000080  67 20 50 49 43 20 6d 6e  65 6d 6f 6e 69 63 73 20  |g PIC mnemonics |
00000090  69 6e 74 6f 20 61 20 62  69 6e 61 72 79 20 66 69  |into a binary fi|
000000a0  6c 65 20 63 61 6c 6c 65  64 20 27 4f 55 54 50 55  |le called 'OUTPU|
000000b0  54 27 20 72 65 61 64 79  0a 74 6f 20 62 65 20 70  |T' ready.to be p|
000000c0  72 6f 67 72 61 6d 6d 65  64 20 73 74 72 61 69 67  |rogrammed straig|
000000d0  68 74 20 6f 6e 74 6f 20  61 20 63 68 69 70 2c 6f  |ht onto a chip,o|
000000e0  72 20 74 65 73 74 65 64  20 69 6e 20 61 20 73 69  |r tested in a si|
000000f0  6d 75 6c 61 74 6f 72 2e  0a 54 68 65 20 6d 61 6e  |mulator..The man|
00000100  75 61 6c 20 61 6e 64 20  73 6f 66 74 77 61 72 65  |ual and software|
00000110  20 61 72 65 20 28 43 29  31 39 39 37 20 53 50 52  | are (C)1997 SPR|
00000120  4f 57 0a 0a 49 4e 53 54  52 55 43 54 49 4f 4e 53  |OW..INSTRUCTIONS|
00000130  2d 0a 49 66 20 79 6f 75  27 72 65 20 75 73 69 6e  |-.If you're usin|
00000140  67 20 74 68 69 73 20 73  6f 66 74 77 61 72 65 20  |g this software |
00000150  66 72 6f 6d 20 61 20 42  42 43 20 69 74 20 77 69  |from a BBC it wi|
00000160  6c 6c 20 61 70 70 65 61  72 20 61 73 20 61 20 73  |ll appear as a s|
00000170  65 72 69 65 73 20 6f 66  0a 64 69 72 65 63 74 6f  |eries of.directo|
00000180  72 69 65 73 2c 77 68 69  63 68 20 79 6f 75 20 6d  |ries,which you m|
00000190  61 79 20 77 69 73 68 20  74 6f 20 72 65 6e 61 6d  |ay wish to renam|
000001a0  65 20 6f 72 20 6d 6f 76  65 20 74 6f 20 73 61 76  |e or move to sav|
000001b0  65 20 6f 6e 20 74 79 70  69 6e 67 20 69 6e 0a 6c  |e on typing in.l|
000001c0  6f 6e 67 20 70 61 74 68  6e 61 6d 65 73 20 65 76  |ong pathnames ev|
000001d0  65 72 79 20 74 69 6d 65  20 79 6f 75 20 75 73 65  |ery time you use|
000001e0  20 74 68 65 20 73 6f 66  74 77 61 72 65 2e 0a 0a  | the software...|
000001f0  41 44 46 53 20 75 73 65  72 73 20 6f 6e 20 61 6e  |ADFS users on an|
00000200  20 38 20 62 69 74 20 41  63 6f 72 6e 20 6d 61 79  | 8 bit Acorn may|
00000210  20 70 72 65 66 65 72 20  74 6f 20 64 65 6c 65 74  | prefer to delet|
00000220  65 20 74 68 65 20 66 69  6c 65 73 20 21 53 70 72  |e the files !Spr|
00000230  69 74 65 73 20 61 6e 64  0a 21 42 6f 6f 74 20 73  |ites and.!Boot s|
00000240  69 6e 63 65 20 74 68 65  79 20 61 72 65 20 6d 65  |ince they are me|
00000250  61 6e 69 6e 67 6c 65 73  73 2e 0a 49 66 20 79 6f  |aningless..If yo|
00000260  75 27 72 65 20 75 73 69  6e 67 20 74 68 69 73 20  |u're using this |
00000270  73 6f 66 74 77 61 72 65  20 66 72 6f 6d 20 61 20  |software from a |
00000280  6d 61 63 68 69 6e 65 20  72 75 6e 6e 69 6e 67 20  |machine running |
00000290  52 69 73 63 20 4f 53 20  74 68 65 6e 20 69 74 20  |Risc OS then it |
000002a0  77 69 6c 6c 0a 61 70 70  65 61 72 20 61 73 20 61  |will.appear as a|
000002b0  6e 20 61 70 70 6c 69 63  61 74 69 6f 6e 20 77 69  |n application wi|
000002c0  74 68 20 61 20 70 72 65  74 74 79 20 69 63 6f 6e  |th a pretty icon|
000002d0  2e 0a 0a 44 6f 75 62 6c  65 20 63 6c 69 63 6b 20  |...Double click |
000002e0  6f 6e 20 74 68 65 20 69  63 6f 6e 20 74 6f 20 73  |on the icon to s|
000002f0  74 61 72 74 20 74 68 65  20 69 6e 74 65 72 70 72  |tart the interpr|
00000300  65 74 74 65 72 20 28 69  6e 20 52 69 73 63 20 4f  |etter (in Risc O|
00000310  53 29 20 6f 72 20 43 48  41 49 4e 20 74 68 65 20  |S) or CHAIN the |
00000320  0a 6d 61 69 6e 20 70 72  6f 67 72 61 6d 20 28 6f  |.main program (o|
00000330  6e 20 61 6e 79 20 41 63  6f 72 6e 29 2e 0a 0a 49  |n any Acorn)...I|
00000340  66 20 74 68 65 20 73 6f  75 72 63 65 20 63 6f 64  |f the source cod|
00000350  65 20 70 72 6f 67 72 61  6d 20 63 6f 6e 74 61 69  |e program contai|
00000360  6e 73 20 61 6e 79 20 75  6e 73 75 70 70 6f 72 74  |ns any unsupport|
00000370  65 64 20 63 6f 6d 6d 61  6e 64 73 20 74 68 65 6e  |ed commands then|
00000380  20 74 68 65 73 65 20 77  69 6c 6c 20 0a 62 65 20  | these will .be |
00000390  62 79 70 61 73 73 65 64  20 61 6e 64 20 65 78 65  |bypassed and exe|
000003a0  63 75 74 69 6f 6e 20 63  6f 6e 74 69 6e 75 65 73  |cution continues|
000003b0  2e 53 65 65 20 74 68 65  20 74 65 78 74 20 66 69  |.See the text fi|
000003c0  6c 65 73 20 69 6e 20 74  68 65 20 27 44 6f 63 73  |les in the 'Docs|
000003d0  27 20 64 69 72 65 63 74  6f 72 79 0a 66 6f 72 20  |' directory.for |
000003e0  6d 6f 72 65 20 64 65 74  61 69 6c 73 2e 0a 0a 54  |more details...T|
000003f0  72 79 20 74 79 70 69 6e  67 20 22 48 45 4c 50 22  |ry typing "HELP"|
00000400  20 6f 72 20 22 48 45 4c  50 2e 22 20 66 6f 72 20  | or "HELP." for |
00000410  73 6f 6d 65 20 6f 6e 6c  69 6e 65 20 68 65 6c 70  |some online help|
00000420  0a 0a 49 66 20 6d 65 6d  6f 72 79 20 69 73 20 73  |..If memory is s|
00000430  68 6f 72 74 20 74 68 65  6e 20 61 20 27 53 71 75  |hort then a 'Squ|
00000440  69 73 68 65 64 27 20 76  65 72 73 69 6f 6e 20 69  |ished' version i|
00000450  73 20 73 75 70 70 6c 69  65 64 2c 61 6e 64 20 72  |s supplied,and r|
00000460  75 6e 6e 69 6e 67 20 74  68 69 73 20 69 6e 0a 73  |unning this in.s|
00000470  68 61 64 6f 77 20 4d 4f  44 45 20 31 33 35 20 6f  |hadow MODE 135 o|
00000480  6e 20 61 20 42 42 43 20  4d 61 73 74 65 72 20 31  |n a BBC Master 1|
00000490  32 38 20 77 69 6c 6c 20  61 6c 73 6f 20 66 72 65  |28 will also fre|
000004a0  65 20 75 70 20 73 6f 6d  65 20 6d 6f 72 65 20 6d  |e up some more m|
000004b0  65 6d 6f 72 79 2e 0a 0a  54 49 4d 49 4e 47 20 2d  |emory...TIMING -|
000004c0  0a 54 68 65 20 70 72 6f  67 72 61 6d 20 69 6e 20  |.The program in |
000004d0  27 4b 32 53 61 75 63 65  27 2c 77 68 69 63 68 20  |'K2Sauce',which |
000004e0  69 73 20 6f 6e 65 20 6f  66 20 74 68 65 20 65 78  |is one of the ex|
000004f0  61 6d 70 6c 65 73 2c 74  68 65 20 66 6f 6c 6c 6f  |amples,the follo|
00000500  77 69 6e 67 20 74 69 6d  65 73 20 0a 77 65 72 65  |wing times .were|
00000510  20 6f 62 73 65 72 76 65  64 20 77 68 65 6e 20 72  | observed when r|
00000520  75 6e 20 69 6e 20 56 30  2e 39 37 20 6f 6e 20 74  |un in V0.97 on t|
00000530  68 65 20 66 6f 6c 6c 6f  77 69 6e 67 20 6d 61 63  |he following mac|
00000540  68 69 6e 65 73 0a 20 20  4d 61 73 74 65 72 20 31  |hines.  Master 1|
00000550  32 38 20 69 6e 20 4d 4f  44 45 20 31 33 35 20 3d  |28 in MODE 135 =|
00000560  20 32 34 31 30 73 20 28  61 62 6f 75 74 20 34 30  | 2410s (about 40|
00000570  20 6d 69 6e 75 74 65 73  29 0a 20 20 4d 61 73 74  | minutes).  Mast|
00000580  65 72 20 31 32 38 20 77  69 74 68 20 32 6e 64 20  |er 128 with 2nd |
00000590  70 72 6f 63 65 73 73 6f  72 20 3d 20 31 36 38 31  |processor = 1681|
000005a0  73 20 28 61 62 6f 75 74  20 32 38 20 6d 69 6e 75  |s (about 28 minu|
000005b0  74 65 73 29 0a 20 20 52  69 73 63 20 50 43 20 37  |tes).  Risc PC 7|
000005c0  30 30 20 77 69 74 68 20  56 52 41 4d 20 3d 20 32  |00 with VRAM = 2|
000005d0  37 73 0a 20 20 52 69 73  63 20 50 43 20 53 74 72  |7s.  Risc PC Str|
000005e0  6f 6e 67 41 52 4d 20 3d  20 36 73 0a 0a 45 58 49  |ongARM = 6s..EXI|
000005f0  54 20 4d 45 53 53 41 47  45 53 2d 0a 4e 6f 6e 65  |T MESSAGES-.None|
00000600  20 6f 66 20 74 68 65 73  65 20 6d 65 73 73 61 67  | of these messag|
00000610  65 73 20 73 65 74 20 45  52 52 20 6f 72 20 45 52  |es set ERR or ER|
00000620  4c 2e 49 66 20 61 6e 20  65 72 72 6f 72 20 6d 65  |L.If an error me|
00000630  73 73 61 67 65 20 6f 63  63 75 72 73 20 74 68 61  |ssage occurs tha|
00000640  74 20 49 53 0a 61 63 63  6f 6d 70 61 6e 69 65 64  |t IS.accompanied|
00000650  20 62 79 20 61 20 6e 75  6d 62 65 72 20 6f 6e 20  | by a number on |
00000660  74 68 65 20 73 63 72 65  65 6e 20 74 68 65 6e 20  |the screen then |
00000670  74 68 69 73 20 73 69 67  6e 61 6c 73 20 74 68 61  |this signals tha|
00000680  74 20 69 74 20 77 61 73  20 6e 6f 74 69 63 65 64  |t it was noticed|
00000690  20 62 79 0a 42 41 53 49  43 20 61 6e 64 20 74 68  | by.BASIC and th|
000006a0  6f 73 65 20 77 69 74 68  20 6e 6f 20 6e 75 6d 62  |ose with no numb|
000006b0  65 72 20 69 73 20 61 6e  20 65 72 72 6f 72 20 74  |er is an error t|
000006c0  68 61 74 20 49 27 76 65  20 6e 6f 74 69 63 65 64  |hat I've noticed|
000006d0  0a 0a 65 67 2e 20 45 73  63 61 70 65 20 20 20 20  |..eg. Escape    |
000006e0  20 31 30 37 30 0a 20 20  20 20 3e 0a 20 20 20 20  | 1070.    >.    |
000006f0  59 6f 75 27 76 65 20 70  72 65 73 73 65 64 20 45  |You've pressed E|
00000700  73 63 61 70 65 20 61 6e  64 20 69 74 20 6a 75 73  |scape and it jus|
00000710  74 20 68 61 70 70 65 6e  65 64 20 74 68 61 74 20  |t happened that |
00000720  79 6f 75 20 77 65 72 65  20 61 74 20 6c 69 6e 65  |you were at line|
00000730  20 31 30 37 30 20 69 6e  0a 20 20 20 20 74 68 65  | 1070 in.    the|
00000740  20 69 6e 74 65 72 70 72  65 74 74 65 72 20 61 74  | interpretter at|
00000750  20 74 68 65 20 74 69 6d  65 2c 4e 4f 54 20 6c 69  | the time,NOT li|
00000760  6e 65 20 31 30 37 30 20  69 6e 20 74 68 65 20 73  |ne 1070 in the s|
00000770  6f 75 72 63 65 20 63 6f  64 65 20 66 69 6c 65 2e  |ource code file.|
00000780  0a 0a 65 67 2e 20 4d 69  73 73 69 6e 67 20 23 0a  |..eg. Missing #.|
00000790  20 20 20 20 3e 0a 20 20  20 20 4d 79 20 69 6e 74  |    >.    My int|
000007a0  65 72 70 72 65 74 74 65  72 20 68 61 73 20 72 65  |erpretter has re|
000007b0  6a 65 63 74 65 64 20 74  68 69 73 20 61 73 20 79  |jected this as y|
000007c0  6f 75 27 76 65 20 6d 69  73 73 65 64 20 61 20 23  |ou've missed a #|
000007d0  20 6f 75 74 20 6f 66 20  61 20 6d 6e 65 6d 6f 6e  | out of a mnemon|
000007e0  69 63 0a 20 20 20 20 74  68 61 74 20 72 65 71 75  |ic.    that requ|
000007f0  69 72 65 73 20 61 20 6c  69 74 65 72 61 6c 20 61  |ires a literal a|
00000800  66 74 65 72 20 69 74 0a  0a 22 43 6f 6d 6d 61 6e  |fter it.."Comman|
00000810  64 20 6e 6f 74 20 73 75  70 70 6f 72 74 65 64 22  |d not supported"|
00000820  20 2d 20 6f 6e 6c 79 20  74 68 65 20 63 6f 6d 6d  | - only the comm|
00000830  61 6e 64 73 20 69 6e 64  69 63 61 74 65 64 20 62  |ands indicated b|
00000840  79 20 48 45 4c 50 2e 20  61 72 65 20 61 6c 6c 6f  |y HELP. are allo|
00000850  77 65 64 0a 22 4e 6f 20  68 65 6c 70 20 61 76 61  |wed."No help ava|
00000860  69 6c 61 62 6c 65 20 6f  6e 20 74 68 61 74 20 74  |ilable on that t|
00000870  6f 70 69 63 22 20 2d 20  61 6c 6c 20 68 65 6c 70  |opic" - all help|
00000880  20 64 65 74 61 69 6c 73  20 63 61 6e 20 62 65 20  | details can be |
00000890  73 68 6f 77 6e 20 75 73  69 6e 67 20 48 45 4c 50  |shown using HELP|
000008a0  2e 0a 22 46 69 6c 65 20  6e 6f 74 20 66 6f 75 6e  |.."File not foun|
000008b0  64 22 20 2d 20 66 69 6c  69 6e 67 20 73 79 73 74  |d" - filing syst|
000008c0  65 6d 20 63 6f 75 6c 64  20 6e 6f 74 20 6c 6f 63  |em could not loc|
000008d0  61 74 65 20 74 68 65 20  73 6f 75 72 63 65 20 63  |ate the source c|
000008e0  6f 64 65 0a 22 42 61 64  20 70 72 6f 67 72 61 6d  |ode."Bad program|
000008f0  22 20 2d 20 42 41 53 49  43 20 66 69 6c 65 73 20  |" - BASIC files |
00000900  61 72 65 20 61 73 73 75  6d 65 64 20 74 6f 20 73  |are assumed to s|
00000910  74 61 72 74 20 26 30 44  20 61 6e 64 20 65 6e 64  |tart &0D and end|
00000920  20 26 46 46 0a 22 4e 6f  20 70 72 6f 67 72 61 6d  | &FF."No program|
00000930  20 6c 6f 61 64 65 64 22  20 2d 20 79 6f 75 20 74  | loaded" - you t|
00000940  72 69 65 64 20 74 6f 20  4c 49 53 54 20 6f 72 20  |ried to LIST or |
00000950  52 55 4e 20 62 65 66 6f  72 65 20 6c 6f 61 64 69  |RUN before loadi|
00000960  6e 67 20 74 68 65 20 73  6f 75 72 63 65 0a 22 4e  |ng the source."N|
00000970  6f 20 73 75 63 68 20 6d  6e 65 6d 6f 6e 69 63 22  |o such mnemonic"|
00000980  20 2d 20 69 6d 70 6c 69  65 73 20 61 20 6e 6f 6e  | - implies a non|
00000990  20 50 49 43 20 6d 6e 65  6d 6f 6e 69 63 20 77 61  | PIC mnemonic wa|
000009a0  73 20 75 73 65 64 0a 22  42 61 64 20 6f 70 74 69  |s used."Bad opti|
000009b0  6f 6e 22 20 2d 20 61 73  73 65 6d 62 6c 65 72 20  |on" - assembler |
000009c0  70 73 65 75 64 6f 20 6d  6e 65 6d 6f 6e 69 63 20  |pseudo mnemonic |
000009d0  4f 50 54 20 6d 75 73 74  20 62 65 20 3c 20 38 0a  |OPT must be < 8.|
000009e0  22 54 6f 6f 20 62 69 67  22 20 2d 20 67 65 6e 65  |"Too big" - gene|
000009f0  72 61 74 65 64 20 62 79  20 74 68 65 20 62 69 6e  |rated by the bin|
00000a00  61 72 79 20 69 6e 74 65  72 70 72 65 74 74 65 72  |ary interpretter|
00000a10  2c 31 34 20 62 69 74 20  6e 75 6d 62 65 72 73 20  |,14 bit numbers |
00000a20  6d 61 78 69 6d 75 6d 20  61 6c 6c 6f 77 65 64 0a  |maximum allowed.|
00000a30  22 44 6f 6e 27 74 20 75  73 65 20 74 68 65 20 27  |"Don't use the '|
00000a40  24 27 20 6f 70 65 72 61  74 6f 72 22 20 2d 20 67  |$' operator" - g|
00000a50  65 6e 65 72 61 74 65 64  20 62 79 20 74 68 65 20  |enerated by the |
00000a60  65 78 70 72 65 73 73 69  6f 6e 20 69 6e 74 65 72  |expression inter|
00000a70  70 72 65 74 74 65 72 0a  22 53 69 6c 6c 79 22 20  |pretter."Silly" |
00000a80  2d 20 74 68 65 20 6d 6e  65 6d 6f 6e 69 63 20 45  |- the mnemonic E|
00000a90  51 55 20 77 61 73 20 65  6e 63 6f 75 6e 74 65 72  |QU was encounter|
00000aa0  65 64 20 61 6e 64 20 50  49 43 73 20 63 61 6e 27  |ed and PICs can'|
00000ab0  74 20 68 61 76 65 20 69  6e 20 6c 69 6e 65 20 64  |t have in line d|
00000ac0  61 74 61 0a 22 42 61 64  20 42 69 6e 61 72 79 22  |ata."Bad Binary"|
00000ad0  20 2d 20 62 69 6e 61 72  79 20 6e 75 6d 62 65 72  | - binary number|
00000ae0  73 20 6d 75 73 74 20 62  65 20 61 74 20 6c 65 61  |s must be at lea|
00000af0  73 74 20 6f 6e 65 20 63  68 61 72 61 63 74 65 72  |st one character|
00000b00  20 6c 6f 6e 67 0a 22 4d  69 73 73 69 6e 67 20 23  | long."Missing #|
00000b10  22 20 2d 20 69 6e 73 74  72 75 63 74 69 6f 6e 20  |" - instruction |
00000b20  73 75 63 68 20 61 73 20  58 4f 52 4c 57 20 6e 65  |such as XORLW ne|
00000b30  65 64 73 20 61 20 68 61  73 68 20 74 68 65 6e 20  |eds a hash then |
00000b40  61 20 6e 75 6d 65 72 69  63 20 61 66 74 65 72 20  |a numeric after |
00000b50  69 74 0a 22 4d 69 73 73  69 6e 67 20 2c 22 20 2d  |it."Missing ," -|
00000b60  20 69 6e 73 74 72 75 63  74 69 6f 6e 20 73 75 63  | instruction suc|
00000b70  68 20 61 73 20 4d 4f 56  46 20 6e 65 65 64 73 20  |h as MOVF needs |
00000b80  74 77 6f 20 63 6f 6d 6d  61 20 73 65 70 61 72 61  |two comma separa|
00000b90  74 65 64 20 76 61 72 69  61 62 6c 65 73 0a 22 53  |ted variables."S|
00000ba0  79 6e 74 61 78 20 65 72  72 6f 72 22 3b 22 4e 6f  |yntax error";"No|
00000bb0  20 73 75 63 68 20 76 61  72 69 61 62 6c 65 22 3b  | such variable";|
00000bc0  22 4d 69 73 73 69 6e 67  20 22 22 3b 22 4d 69 73  |"Missing "";"Mis|
00000bd0  74 61 6b 65 22 20 2d 20  61 73 20 70 65 72 20 42  |take" - as per B|
00000be0  42 43 20 62 61 73 69 63  0a 22 4e 6f 20 46 4f 52  |BC basic."No FOR|
00000bf0  22 3b 22 4e 6f 20 54 4f  22 3b 22 42 61 64 20 44  |";"No TO";"Bad D|
00000c00  49 4d 22 3b 22 54 79 70  65 20 6d 69 73 6d 61 74  |IM";"Type mismat|
00000c10  63 68 22 3b 22 43 61 6e  27 74 20 4d 61 74 63 68  |ch";"Can't Match|
00000c20  20 46 4f 52 22 20 2d 20  61 73 20 70 65 72 20 42  | FOR" - as per B|
00000c30  42 43 20 62 61 73 69 63  0a 22 53 54 4f 50 22 3b  |BC basic."STOP";|
00000c40  22 54 6f 6f 20 6d 61 6e  79 20 46 4f 52 73 22 3b  |"Too many FORs";|
00000c50  22 4e 6f 20 46 4e 22 20  2d 20 61 73 20 70 65 72  |"No FN" - as per|
00000c60  20 42 42 43 20 62 61 73  69 63 0a 0a 4b 4e 4f 57  | BBC basic..KNOW|
00000c70  4e 20 50 52 4f 42 4c 45  4d 53 2f 46 55 54 55 52  |N PROBLEMS/FUTUR|
00000c80  45 20 45 4e 48 41 4e 43  45 4d 45 4e 54 53 2d 0a  |E ENHANCEMENTS-.|
00000c90  53 65 65 20 74 68 65 20  27 4c 69 6d 69 74 73 27  |See the 'Limits'|
00000ca0  20 66 69 6c 65 20 66 6f  72 20 6d 6f 72 65 20 64  | file for more d|
00000cb0  65 74 61 69 6c 73 2e 0a  4d 6f 72 65 20 6b 65 79  |etails..More key|
00000cc0  77 6f 72 64 20 73 75 70  70 6f 72 74 20 77 69 6c  |word support wil|
00000cd0  6c 20 66 6f 6c 6c 6f 77  20 69 6e 20 74 68 65 20  |l follow in the |
00000ce0  66 75 74 75 72 65 2e 0a  49 74 27 73 20 61 6c 6c  |future..It's all|
00000cf0  20 77 72 69 74 74 65 6e  20 69 6e 20 42 41 53 49  | written in BASI|
00000d00  43 20 49 49 20 73 79 6e  74 61 78 2c 61 6e 64 20  |C II syntax,and |
00000d10  69 73 20 61 73 20 73 6d  61 6c 6c 20 61 73 20 70  |is as small as p|
00000d20  6f 73 73 69 62 6c 65 20  2d 20 73 6f 20 69 74 20  |ossible - so it |
00000d30  63 61 6e 0a 69 6e 66 61  63 74 20 62 65 20 72 75  |can.infact be ru|
00000d40  6e 20 6f 6e 20 61 20 42  42 43 20 73 69 6e 63 65  |n on a BBC since|
00000d50  20 74 68 61 74 20 69 73  20 77 68 65 72 65 20 61  | that is where a|
00000d60  20 6c 6f 74 20 6f 66 20  6d 79 20 73 6f 66 74 77  | lot of my softw|
00000d70  61 72 65 20 61 75 74 68  6f 72 69 6e 67 0a 69 73  |are authoring.is|
00000d80  20 64 6f 6e 65 2e 0a 0a  48 49 53 54 4f 52 59 2d  | done...HISTORY-|
00000d90  0a 53 65 65 20 74 68 65  20 27 46 69 78 65 64 27  |.See the 'Fixed'|
00000da0  20 66 69 6c 65 20 66 6f  72 20 6d 6f 72 65 20 64  | file for more d|
00000db0  65 74 61 69 6c 73 2e 0a  56 30 2e 39 30 20 49 6e  |etails..V0.90 In|
00000dc0  74 65 72 6e 61 6c 20 76  65 72 73 69 6f 6e 2c 77  |ternal version,w|
00000dd0  6f 72 6b 65 64 20 77 65  6c 6c 20 65 6e 6f 75 67  |orked well enoug|
00000de0  68 20 74 6f 20 6d 65 65  74 20 6d 79 20 72 65 71  |h to meet my req|
00000df0  75 69 72 65 6d 65 6e 74  73 2e 0a 56 30 2e 39 35  |uirements..V0.95|
00000e00  20 4d 61 6e 79 20 65 6e  68 61 6e 63 65 6d 65 6e  | Many enhancemen|
00000e10  74 73 2c 61 6c 73 6f 20  61 73 73 65 6d 62 6c 79  |ts,also assembly|
00000e20  20 69 73 20 6e 6f 77 20  61 62 6f 75 74 20 32 30  | is now about 20|
00000e30  25 20 66 61 73 74 65 72  20 74 68 61 6e 20 69 6e  |% faster than in|
00000e40  20 30 2e 39 30 0a 56 30  2e 39 37 20 49 6d 70 72  | 0.90.V0.97 Impr|
00000e50  6f 76 65 6d 65 6e 74 73  20 74 6f 20 46 4f 52 2e  |ovements to FOR.|
00000e60  2e 2e 4e 45 58 54 20 73  74 72 75 63 74 75 72 65  |..NEXT structure|
00000e70  20 61 6e 64 20 73 6c 69  67 68 74 20 73 70 65 65  | and slight spee|
00000e80  64 20 69 6e 63 72 65 61  73 65 0a 56 30 2e 39 38  |d increase.V0.98|
00000e90  20 41 64 64 73 20 53 54  4f 50 2c 43 4c 53 2c 61  | Adds STOP,CLS,a|
00000ea0  6e 64 20 45 4e 44 20 6b  65 79 77 6f 72 64 73 2c  |nd END keywords,|
00000eb0  70 6c 75 73 20 48 45 4c  50 20 68 61 73 20 62 65  |plus HELP has be|
00000ec0  65 6e 20 69 6d 70 72 6f  76 65 64 2e 46 61 73 74  |en improved.Fast|
00000ed0  65 72 20 74 6f 6f                                 |er too|
00000ed6