From c12b1b99f2e3ab731c483bc93fa21b4763624fac Mon Sep 17 00:00:00 2001 From: Jacques Comeaux Date: Sat, 22 Jun 2024 17:43:20 -0500 Subject: Finish hexedit machine code --- hexedit/Makefile | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'hexedit/Makefile') diff --git a/hexedit/Makefile b/hexedit/Makefile index 4712bd1..ef7a4c2 100644 --- a/hexedit/Makefile +++ b/hexedit/Makefile @@ -2,6 +2,13 @@ all: build build: hexedit.uf2 +dump: hexedit.bin + hexdump -o hexedit.bin + +hexedit.bin: hexedit.o + arm-none-eabi-ld -T pico_bin.ld -o hexedit.bin hexedit.o + arm-none-eabi-objcopy -O binary hexedit.bin + hexedit.uf2: hexedit.elf ../elf/elf2uf2 hexedit.elf hexedit.uf2 @@ -14,8 +21,8 @@ $(objects): %.o: %.s arm-none-eabi-as -o $@ $< clean: - rm hexedit.elf hexedit.uf2 *.o + rm hexedit.elf hexedit.uf2 hexedit.bin *.o flash: hexedit.uf2 - [ -h /dev/disk/by-label/RPI-RP2 ] || sleep 2s + [ -h /dev/disk/by-label/RPI-RP2 ] || sleep 3s cat hexedit.uf2 > /dev/disk/by-label/RPI-RP2 -- cgit v1.2.3