rp2040

RP2040 Programming without SDK
Log | Files | Refs

commit f0f91891ad881b7820f338aef23a5fe90ea3a62e
parent b60c27fef54350189de479e42053d835c150cda5
Author: Matsuda Kenji <info@mtkn.jp>
Date:   Thu,  6 Apr 2023 11:07:54 +0900

change file extention

Diffstat:
MMakefile | 4++--
Rboot2/boot2.S -> boot2/boot2.s | 0
Rboot2/boot2_generic.S -> boot2/boot2_generic.s | 0
3 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -27,8 +27,8 @@ start.o: start.s boot2_crc.o: boot2/boot2_crc.S $(AS) $(ASFLAGS) -o boot2_crc.o boot2/boot2_crc.S -boot2/boot2_crc.S: boot2/boot2.S bincrc - $(AS) $(ASFLAGS) -o boot2/boot2.o boot2/boot2.S +boot2/boot2_crc.S: boot2/boot2.s bincrc + $(AS) $(ASFLAGS) -o boot2/boot2.o boot2/boot2.s $(OBJCOPY) -O binary boot2/boot2.o boot2/boot2.bin ./bincrc boot2/boot2.bin boot2/boot2_crc.S diff --git a/boot2/boot2.S b/boot2/boot2.s diff --git a/boot2/boot2_generic.S b/boot2/boot2_generic.s