:*******************************************************

clr     WREG6     ;WREG = 0
repeat  #0
inc     WREG6     ;increment WREG6
nop               ;WREG6 = 1

:*******************************************************

clr     WREG6     ;WREG = 0 
repeat  #16383
inc     WREG6     ;increment WREG6
nop               ;WREG = 16384

:*******************************************************

clr     WREG6     ;WREG6 = 0
repeat  #16384    ;Error: Invalid operands specified ('repeat #16384')
inc     WREG6
nop

:*******************************************************