Hi all PBP Artists!
i'm trying to create an array of two ports -porta and portc (16f630)

Output VAR bit[9]

SYMBOL Output[0] = PORTA.0
SYMBOL Output[1] = PORTA.1
SYMBOL Output[2] = PORTA.2
SYMBOL Output[3] = PORTA.3
SYMBOL Output[4] = PORTA.4
SYMBOL Output[5] = PORTC.0
SYMBOL Output[6] = PORTC.1
SYMBOL Output[7] = PORTC.2
SYMBOL Output[8] = PORTC.3
SYMBOL Output[9] = PORTC.4

for x = o to 9
Output[x] = 1
next x

it doesn't work! where is my mistake?