aboutsummaryrefslogtreecommitdiff
path: root/hexedit/Makefile
diff options
context:
space:
mode:
authorJacques Comeaux <jacquesrcomeaux@protonmail.com>2024-06-22 17:43:20 -0500
committerJacques Comeaux <jacquesrcomeaux@protonmail.com>2024-06-22 17:43:20 -0500
commitc12b1b99f2e3ab731c483bc93fa21b4763624fac (patch)
treee09f571b32c17dee364f682daa2f41565d18c1b4 /hexedit/Makefile
parentef5584d60def8e9f778f9332cb43a22591b6ff24 (diff)
Finish hexedit machine code
Diffstat (limited to 'hexedit/Makefile')
-rw-r--r--hexedit/Makefile11
1 files changed, 9 insertions, 2 deletions
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