]> git.sur5r.net Git - cc65/commitdiff
Document the new c_comments feature.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 21 Aug 2008 19:42:52 +0000 (19:42 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 21 Aug 2008 19:42:52 +0000 (19:42 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@3890 b7a2c559-68d2-44c3-8de9-860c34a00d81

doc/ca65.sgml

index 4f792131e22fbfe2cc0e06a7eb0ec85fddbbb35c..96c5989f253b140a4f11c55766c2a19ec7547b5e 100644 (file)
@@ -2236,6 +2236,19 @@ Here's a list of all control commands and a description, what they do:
     at character is not allowed to start an identifier, even with this
     feature enabled.
 
+  <tag><tt>c_comments</tt></tag>
+
+    Allow C like comments using <tt>/*</tt> and <tt>*/</tt> as left and right
+    comment terminators. Note that C comments may not be nested. There's also a
+    pitfall when using C like comments: All statements must be terminated by
+    "end-of-line". Using C like comments, it is possible to hide the newline,
+    which results in error messages. See the following non working example:
+
+    <tscreen><verb>
+        lda     #$00  /* This comment hides the newline
+*/      sta     $82
+    </verb></tscreen>
+
   <tag><tt>dollar_in_identifiers</tt></tag>
 
     Accept the dollar sign (`&dollar;') as a valid character in identifiers. The