You cannot begin comments with a pound sign ( # ) because the preprocessor uses the pound sign. For example, this format is invalid:
add r3,r4,r5 # Comment
Use C and C++ comments in this format:
add r3,r4,r5 // Comment add r3,r4,r5 /* Comment */