]> git.sur5r.net Git - cc65/commitdiff
Update from Stefan Haubenthal.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 24 Jan 2012 20:43:10 +0000 (20:43 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 24 Jan 2012 20:43:10 +0000 (20:43 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@5425 b7a2c559-68d2-44c3-8de9-860c34a00d81

doc/intro.sgml

index e3fc25dfb3e661d3720498448746116204096847..bd0b1c98e23bf3289e53d0edccb584bae01c723d 100644 (file)
@@ -92,24 +92,24 @@ is the C64.
          |
         cc65
          \/
-    +---------+       +---------+
-    | hello.s |       | text.s  |
-    +---------+       +---------+
-         |                 |
-        ca65              ca65
-         \/                \/
-    +---------+       +---------+       +----------+       +---------+
-    | hello.o |       | text.o  |       |  c64.o   |       | c64.lib |
-    +---------+       +---------+       +----------+       +---------+
-         |                    \          /                      |
-         |                     \        /                       |
-         |                      \      /                        |
-         +----------------------->ld65<-------------------------+
+    +---------+       +---------+       +---------+
+    | hello.s |       | text.s  |       | crt0.o  |
+    +---------+       +---------+       +---------+
+         |                 |                 |
+        ca65              ca65              ar65
+         \/                \/                \/
+    +---------+       +---------+       +---------+
+    | hello.o |       | text.o  |       | c64.lib |
+    +---------+       +---------+       +---------+
+         |                    \          /
+         |                     \        /
+         |                      \      /
+         +----------------------->ld65<
                                    \/
                                  hello
 </verb></tscreen>
 
-<tt/c64.o/ (the startup code) and <tt/c64.lib/ (the C64 version of the runtime
+<tt/crt0.o/ (the startup code) and <tt/c64.lib/ (the C64 version of the runtime
 and C library) are provided in binary form in the cc65 package. Actually, the
 startup code is contained in the library, so you won't need to care about it.