Hi, I'll look it in my manual, and will write tomorrow. Regards, Imre On Tue, 13 Jun 2000, Jacky Joulin wrote: > ---------- Message d'origine ---------- > De : root@PROF.PMMF.HU > Ë : PICLIST@MITVMA.MIT.EDU > Date : 13/06/2000-08h08 > > > I have no very good understand your answer , can you precise > > I'am sorry > > Jacky > > > Hi, > > are you aware of the fact such way you get binary values IMHO? A modifier > should be prepended to BOUCLE... > Regards, > Imre > > > On Mon, 12 Jun 2000, Jacky Joulin wrote: > > > Hello, > > > > I have an error if I want utilize variable WORD. > > > > the resulte of my program write 0 to 255 to my therminal rs232 > > > > the version of PicBasic Pro Compiler is V 2.12 > > > > Jacky > > Weslay@infonie.fr > > > > > > My Program: > > > > '******************************************************************** > > ' > > ' TEST PIC 16F84 and resonator 8Mhz > > ' > > '******************************************************************** > > > > DEFINE OSC 8 ' Oscillateur 8Mhz > > > > DEFINE DEBUG_REG PORTA ' init RS232 > > DEFINE DEBUG_BIT 1 ' -- > > DEFINE DEBUG_BAUD 9600 ' -- > > DEFINE DEBUG_MODE 0 ' -- > > > > > > Boucle VAR WORD > > > > '********************************************************************** > > > > START: > > > > FOR BOUCLE = 0 to 65535 > > DEBUG "B",BOUCLE,10 'output boucle to terminal RS232 > > PAUSE 10 > > NEXT BOUCLE > > > > goto START > > > > > > END > > > > > >