Currently in my program I am creating the first array of only 8 bytes (x255), but that will expand depending on ease of operation and speed. I'd like to be able to clear the the whole 8 byte array with one command.

I thought that where the array

DPA var byte [8]

was used that I'd be able to clear the whole array by using

DPA = 0

but that doesn't work.

John P
Virginia Beach, Virginia USA