Putting values into an array
Hi!
I'm having trouble manually placing values into an array. I'm using a 16F628 and Pic Basic Pro. Here is what I'm trying to do:
CLAR VAR BYTE[32]
I want to put this:
0,1,0,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,0, 0,0,1,0,0,0,0,0
Into the CLAR array.
Right now, I'm trying:
CLAR = 0,1,0,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,0, 0,0,1,0,0,0,0,0
But it won't work. I've tried to search through this forum, but I couldn't find any solutions to this. I thought about making a FOR loop and putting each individual value in each location of the array.
Thanks for your help!!!