modified bench02 to run from 0x8000

This commit is contained in:
David Welch
2012-06-08 22:23:50 -04:00
parent b8613820ff
commit 215de128be
4 changed files with 6 additions and 15 deletions

View File

@@ -3,7 +3,7 @@ ARMGNU ?= arm-none-eabi
COPS = -mthumb-interwork -Wall -O2 -nostdlib -nostartfiles -ffreestanding
all : bench02.hex bench02.bin
all : bench02.bin
clean :
rm -f *.o
@@ -11,7 +11,6 @@ clean :
rm -f *.hex
rm -f *.elf
rm -f *.list
rm -f *.img
novectors.o : novectors.s
$(ARMGNU)-as novectors.s -o novectors.o
@@ -29,7 +28,4 @@ bench02.elf : memmap novectors.o bench02.o uart.o
bench02.bin : bench02.elf
$(ARMGNU)-objcopy bench02.elf -O binary bench02.bin
bench02.hex : bench02.elf
$(ARMGNU)-objcopy bench02.elf -O ihex bench02.hex