1
0
mirror of https://github.com/cc65/cc65.git synced 2025-02-21 05:29:16 +00:00

Update from Stefan Haubenthal.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5425 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2012-01-24 20:43:10 +00:00
parent e0d6948ff6
commit 28f92b50a9

View File

@ -92,24 +92,24 @@ is the C64.
| |
cc65 cc65
\/ \/
+---------+ +---------+ +---------+ +---------+ +---------+
| hello.s | | text.s | | hello.s | | text.s | | crt0.o |
+---------+ +---------+ +---------+ +---------+ +---------+
| | | | |
ca65 ca65 ca65 ca65 ar65
\/ \/ \/ \/ \/
+---------+ +---------+ +----------+ +---------+ +---------+ +---------+ +---------+
| hello.o | | text.o | | c64.o | | c64.lib | | hello.o | | text.o | | c64.lib |
+---------+ +---------+ +----------+ +---------+ +---------+ +---------+ +---------+
| \ / | | \ /
| \ / | | \ /
| \ / | | \ /
+----------------------->ld65<-------------------------+ +----------------------->ld65<
\/ \/
hello hello
</verb></tscreen> </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 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. startup code is contained in the library, so you won't need to care about it.