rp2040

RP2040 Programming without SDK
Log | Files | Refs

commit ef0db8129a2cb04d64c40c098e9b28ab7fd9217e
parent 82eef9d4e5ea66d2d12754596d746e75307581e3
Author: Matsuda Kenji <info@mtkn.jp>
Date:   Sun,  9 Apr 2023 08:15:10 +0900

rename file

Diffstat:
MMakefile | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Makefile b/Makefile @@ -24,13 +24,13 @@ clean: start.o: start.s $(AS) $(ASFLAGS) -o start.o start.s -boot2_crc.o: boot2/boot2_crc.S - $(AS) $(ASFLAGS) -o boot2_crc.o boot2/boot2_crc.S +boot2_crc.o: boot2/boot2_crc.s + $(AS) $(ASFLAGS) -o boot2_crc.o boot2/boot2_crc.s -boot2/boot2_crc.S: boot2/boot2_sram.s bincrc +boot2/boot2_crc.s: boot2/boot2_sram.s bincrc $(AS) $(ASFLAGS) -o boot2/boot2.o boot2/boot2_sram.s $(OBJCOPY) -O binary boot2/boot2.o boot2/boot2.bin - ./bincrc boot2/boot2.bin boot2/boot2_crc.S + ./bincrc boot2/boot2.bin boot2/boot2_crc.s main.o: main.c $(CC) $(CFLAGS) -o main.o main.c