John Bellini wrote: > > To comment out a line we use the ';' > > How do you comment out a whole section? In "C" we use the "/*" & "*/". > What about in Microchip Assembly? > > John Bellini How about this: #DEFINE COM IFDEF I_AM_NOT_DEFINED #DEFINE ECOM ENDIF To use: COM COMMENTED OUT CODE ECOM Substitute COM, ECOM and I_AM_NOT_DEFINED to taste. But I don't believe /* and */ will work, though you may find a couple of symbols that the assembler won't mind. Regards, Stuart.