I've done some own work, but it is not tested:

Code:
    asm
ClearMem macro Array,Size                           ;Macro um Speicher zu löschen
    lfsr 0,Array
    movlw Size
    clrf POSTINC0
    decfsz WREG
    bra $-2
    endm
    endasm
Any hints ?