Chris wrote: > > You could in principle specify the 0 bits too: > > movlw (1 << TMR0ON) | (1 << T0PS2) | (0 << T0PS1) | (1 << T0PS0) > > and similarly for the other 0 bits, which I haven't got handy. I prefer to specify individual bits like this, but leave bit fields (such as the three prescaler bits here) in binary, as in: movlw 1<