minimal testprog (not working)

This commit is contained in:
Christina Quast
2014-11-22 19:48:48 +01:00
commit 2d18f171c2
14 changed files with 10732 additions and 0 deletions

7
minimal/Makefile Normal file
View File

@@ -0,0 +1,7 @@
default:
arm-none-eabi-gcc -c -mcpu=cortex-m3 -mthumb -g test.c -o test.o
arm-none-eabi-ld -T test.ld test.o startup.o pio.o pmc.o -o test.elf
arm-none-eabi-as -mcpu=cortex-m3 -g startup.s -o startup.o
arm-none-eabi-objcopy -O binary test.elf test.bin