> Is it possible to suppress the following warning: > > "Message[302] E:\WORK\PROJECTS\IPABXWPP\MAIN.ASM 427 : Register in operand > not in bank 0. Ensure that bank bits are correct." > > by telling MPASM that the bank bits are set correctly? I couldn't find > anything about it in the MPASM manual. > > -Jacob Blichfeldt > blchfldt@post3.tele.dk > One way to prevent MPASM generating warnings about the correct use of bank selection bits is to invert the msb of any bank 1 register address. e.g. TRISB^80H where the "^" operator denotes exclusive OR.