> > I've been wondering how to best go about setting multiple flags when > setting up INTCON for example. So, to begin with I was doing: > > movlw b'10100000' ; Enable timer interrupts > movwf INTCON > > I presume that the recommendation is to set the flags individually, > even though it might cost an instruction or two, for the sake of > being easier to read: > > clrf INTCON > bsf INTCON,T0IE > bsf INTCON,GIE > > Or is there a better way of doing it when setting multiple flags? > movlw (1<