Fixed order of -o and -t on the linker command line.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4886 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2010-12-04 18:13:47 +00:00
parent e61173fe9e
commit 72d5d040d8
4 changed files with 5 additions and 5 deletions

View File

@@ -245,7 +245,7 @@ into an executable named morse:
cc65 -g -Oi -t c64 morse.c
ca65 -g morse.s
ca65 -g irq.s
ld65 -t c64 -o morse c64.o morse.o irq.o c64.lib
ld65 -o morse -t c64 c64.o morse.o irq.o c64.lib
</verb></tscreen>
When using cl65, this is simplified to