Fixed ld65 arguments to work with newer versions that expect parameters in a more specific order

This commit is contained in:
Brendan Robert 2013-09-25 23:46:25 -05:00
parent 2bc4e4c845
commit 237dce5ea0

View File

@ -56,12 +56,12 @@
<!-- Link the main rendering code -->
<apply executable="${LD65_TOOL}" dir="${build.dir}"
failonerror="true" verbose="true">
<arg value="-o"/>
<arg value="${build.dir}/render.bin#7000"/>
<arg value="--config"/>
<arg value="${src.dir}/link.cfg"/>
<arg value="--start-addr"/>
<arg value="0x$7000"/>
<arg value="-o"/>
<arg value="${build.dir}/render.bin#7000"/>
<fileset dir="${build.dir}" includes="render.o"/>
</apply>