I wrote: > movlw 16 <== will be interpreted as 0x16 if your default > radix is hex > > with: > > movlw .16 <== explicit decimal radix > > or > > movlw D'100' <== explicit decimal radix > Sorry about the D'100' typo -- I meant D'16': Correction: movlw 16 <== will be interpreted as 0x16 if your default radix is hex with: movlw .16 <== explicit decimal radix or movlw D'16' <== explicit decimal radix Regards, Ken Pergola -- http://www.piclist.com hint: The PICList is archived three different ways. See http://www.piclist.com/#archives for details.