At 08:16 12/08/99 +0200, you wrote: >Hi PIC'er friends, > >I have a trouble using lookup of PBP 2.10. > >I have generated a lookup table to use it for a caracter generator. >I have build the table to obtain the fire dots by column in a caracter cell >of 7x5 like this: > >LOOKUP ofset,[$00,$21,$7F,$01,$00, $23,$43,$45,$49,$31, >$22,$41,$49,$49,$26, $0C,$14,$24,$7F,$04, $72,$51,$51,$51,$4E, >$1E,$29,$49,$49,$46, $40,$47,$48,$50,$60, $66,$49,$49,$49,$66 ],fire > >The first five bytes are for "1", the second for "2" unti the "8". With thi >configuration the compilation go on correctly, but if I add another five >byte for the "9" like > >LOOKUP ofset,[$00,$21,$7F,$01,$00, $23,$43,$45,$49,$31, >$22,$41,$49,$49,$26, $0C,$14,$24,$7F,$04, $72,$51,$51,$51,$4E, >$1E,$29,$49,$49,$46, $40,$47,$48,$50,$60, $66,$49,$49,$49,$66, >$30,$49,$49,$49,$3E ],fire > >I obtain the following message: > >Building rotating.HEX... > >Compiling rotating.BAS: >Command line: "C:\PIC\PBP\PBP.EXE -ol -c -p16F84 >C:\PIC\PICPRG\ROTATING.PBP\rotating.BAS" >PicBasic Pro Compiler 2.10, Copyright (c) 1998 microEngineering Labs, Inc. >All Rights Reserved. >PICmicro Macro Assembler 3.02, (C) 1995, 1998 microEngineering Labs, Inc. >Error C:\PIC\PICPRG\ROTATING.PBP\ROTATING.ASM 200 : [211] Poorly Formed >Numeric Constant '3E' >Error C:\PIC\PICPRG\ROTATING.PBP\ROTATING.ASM 200 : [235] Opcode Expected >Instead of '3E' >*** 2 Errors *** > >Build completed successfully. > > > >What can I do to solve the trouble?? > > >Ciao > >Leo > > I have not used this programme before but I can guess that it is to do with the length of a full line that the thingo will process. In the first one you have given it a string that corresponds to less than 128 bytes, in the second the length is greater than 128 bytes. Other than that look for control characters in the data Dennis