have core 0 interrupt other cores

This commit is contained in:
Howard Mao
2017-09-12 20:33:36 -07:00
parent 2a4e994b09
commit 4dd2d5f881
4 changed files with 22 additions and 4 deletions

View File

@@ -1,10 +1,13 @@
bootrom_img = bootrom.img
bootrom_dump = bootrom.dump
GCC=riscv64-unknown-elf-gcc
OBJCOPY=riscv64-unknown-elf-objcopy
OBJDUMP=riscv64-unknown-elf-objdump
all: $(bootrom_img)
img: $(bootrom_img)
dump: $(bootrom_dump)
%.img: %.elf
$(OBJCOPY) -O binary --change-addresses=-0x10000 $< $@