Has anyone got a standard for Pic code formatting?? As my projects have started getting large and multiple, I have adopted my own, and willing to change to another or share mine. How I do it.. ALL_CAPS is used for defines, EQU, macros, and constants First_cap is used for function names, something with a return at the end all_lower is for simple labels for close by GOTOs in side of functions. Underscore_at_end_ is for any function in PAGE1 rather than PAGE0. I have not had to use a larger chip, so I don't have anything for PAGE2 or PAGE3. underscore_at_end as above, but not a function call, just for GOTOs. ;label_comment I do this when a branch falls through and a labels clarifies the code, but it does not ever have a GOTO using it. This keeps me from looking for nonexistent GOTO statements. Please make comments and share your point of view.