I am using a 16f687 for a project. The datasheet says it has 2048 words of flash program memory and 128 bytes of SRAM.

If I use the following commands to make an array:

Code:
BAR_PAT1  VAR BYTE[16]
ARRAYWRITE BAR_PAT1, [1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0]
Which type of memory is the 16 bytes written to? Program or SRAM? I haven't been able to figure it out on my own, and I need to know
for another project.

Thanks,

Andy