Mercurial > lcfOS
annotate test/m3_bare/build.xml @ 399:a7c444404df9
Fix hexwrite
author | Windel Bouwman |
---|---|
date | Fri, 20 Jun 2014 16:36:49 +0200 |
parents | d056b552d3f4 |
children |
rev | line source |
---|---|
377 | 1 |
2 <project name="Userspace" default="m3bare"> | |
3 <target name="m3bare"> | |
4 <assemble source="startup_m3.asm" target="thumb" output="start.o"/> | |
5 <compile sources="hello.c3" target="thumb" output="m3bare.o"/> | |
385 | 6 <link output="bare.o" layout="m3bare.mmap" |
7 target="thumb" | |
8 objects="start.o;m3bare.o"/> | |
9 <objcopy | |
10 objectfile="bare.o" | |
11 imagename="flash" | |
12 output="bare.bin" /> | |
377 | 13 </target> |
14 </project> | |
15 |