Hi all im trying to get a 16 bit word (freq1) into an array (Bits) so i can read of individiual bits the code is below im using a 16f870, i having problems any help on this

thanks
Freq1 VAR WORD
Bits VAR Bit[16]
a VAR BYTE

FOR a = 0 TO 15
Bits[a]=Freq1.bit[a]
NEXT a