Mercurial > lcfOS
annotate examples/qemu_a9_hello/build.xml @ 380:67a584582aee
Small change to hexfile
author | Windel Bouwman |
---|---|
date | Fri, 18 Apr 2014 13:08:45 +0200 |
parents | 9667d78ba79e |
children | d056b552d3f4 |
rev | line source |
---|---|
377 | 1 |
2 <project name="HelloA9" default="hello"> | |
3 | |
4 <target name="hello"> | |
5 <assemble source="startup_a9.asm" target="arm" output="start.o" /> | |
6 <compile target="arm" sources='hello.c3' output="hello.o" /> | |
7 <link objects="start.o;hello.o" output="hello.bin" layout="qemu.mmap" /> | |
8 </target> | |
9 </project> | |
10 |