annotate test/m3_bare/build.xml @ 387:34ac19044b8a
Hello world with paging in emulator
author |
Windel Bouwman |
date |
Thu, 01 May 2014 22:09:18 +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
|