]> git.sur5r.net Git - cc65/blobdiff - doc/coding.sgml
'--no-std-lib' was renamed to '--no-target-lib'
[cc65] / doc / coding.sgml
index 66a5dd288d32401b9b43b253e7422e7dd1c67a34..5897837c4ae4601542a369af41f95fb08c439910 100644 (file)
@@ -2,8 +2,7 @@
 
 <article>
 <title>cc65 coding hints
-<author>Ullrich von Bassewitz, <htmlurl url="mailto:uz@cc65.org" name="uz@cc65.org">
-<date>2000-12-03, 2009-09-01
+<author><url url="mailto:uz@cc65.org" name="Ullrich von Bassewitz">
 
 <abstract>
 How to generate the most effective code with cc65.
@@ -101,7 +100,7 @@ constant. The compiler emits code to add a constant to the secondary register.
 Same thing again for the constant 3. So the code produced contains a fetch
 of 'i', two additions of constants, and a store (into 'i'). Unfortunately, the
 compiler does not see, that "OFFS + 3" is a constant for itself, since it does
-it's evaluation from left to right. There are some ways to help the compiler
+its evaluation from left to right. There are some ways to help the compiler
 to recognize expression like this:
 
 <enum>