On Mon, 29 Jul 2002 15:13:13 -0500, Richard Mellina wrote: >I used the ";" character to comment as always. This is an example of how= it >was commented: > > >name equ h'20' ; this register is for = so and so > >name2 equ 4 ; this bit is for so and= so > >#define name3 [something] ; this is used by so and so > > You shouldn't be using a comment on the same line as your '#define' statement. They operate very differently from 'equ' statements.=20 An 'equ' substitutes the *value* that you've equated the name to; the comment portion is ignored. (It only appears at the 'equ' line.) A '#define' substitutes the *text* that you've specified including the comment portion. The comment portion of your '#define' statement is being substituted into your source file, and not stripped out. Regards, Bob -- http://www.piclist.com#nomail Going offline? Don't AutoReply us! email listserv@mitvma.mit.edu with SET PICList DIGEST in the body