2020-04-06 09:19:53 +00:00
|
|
|
|
2020-04-06 13:28:56 +00:00
|
|
|
include ../common.mk
|
2020-04-06 09:19:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
.PHONY: all
|
|
|
|
all:
|
2020-04-06 13:28:56 +00:00
|
|
|
$(RISCV_GCC) $(CFLAGS) ../start.S main.c -T ../link.lds -o gpio
|
2020-04-06 09:19:53 +00:00
|
|
|
$(RISCV_OBJCOPY) -O binary gpio gpio.bin
|
|
|
|
$(RISCV_OBJDUMP) --disassemble-all gpio > gpio.dump
|