PDA

View Full Version : Newby



happytriger2000
- 8th April 2010, 21:54
Hi,
I'm new and I would like to go for somthing simple to start with.
I openned Microcode Studio Plus, open folder---> samples--->Blink.BAS.
The code is then loaded to the white space as follow:
http://www.flickr.com/photos/25656348@N03/4503759092/
then I click "compile and program" and I get this:
http://www.flickr.com/photos/25656348@N03/4503143891/
can anyone tell me what is missing in line 16 and 23?

Bruce
- 8th April 2010, 22:27
Look in the back of your PBP 2.6 users manual for the list of reserved words. That will show you the problem.

Archangel
- 5th May 2010, 17:54
Hi,
I'm new and I would like to go for somthing simple to start with.
I openned Microcode Studio Plus, open folder---> samples--->Blink.BAS.
The code is then loaded to the white space as follow:
http://www.flickr.com/photos/25656348@N03/4503759092/
then I click "compile and program" and I get this:
http://www.flickr.com/photos/25656348@N03/4503143891/
can anyone tell me what is missing in line 16 and 23?
It would have worked in ver. 2.5, 2.6 made Loop a reserved word as Bruce indicated, as they used it with DO to create a new function more in line with " C " and some others too, just change loop to something not in the reserved word list like Aloop or MyLoop . . . AND . . . Welcome to the forum !

happytriger2000
- 6th May 2010, 04:16
Thanks,
will try that soon