FLASH- RAM Speed+
A test == 0xFF is more efficient (INCFSZ) than a test != 0xFF.
if ( var1 != 0xFF )
nop2();
else
nop();
if ( var1 == 0xFF )