aboutsummaryrefslogtreecommitdiff
path: root/octedit/Makefile
diff options
context:
space:
mode:
authorJacques Comeaux <jacquesrcomeaux@protonmail.com>2024-06-22 17:49:52 -0500
committerJacques Comeaux <jacquesrcomeaux@protonmail.com>2024-06-22 17:49:52 -0500
commit0d7ab1ec70914e2945d0f2530f0999ecea8828fd (patch)
tree97217460aa902eed3bd99fee1bfdc6923cffdf85 /octedit/Makefile
parentc12b1b99f2e3ab731c483bc93fa21b4763624fac (diff)
Improve octedit usability
New features: - Displays current address - Press 'B' to go back
Diffstat (limited to 'octedit/Makefile')
-rw-r--r--octedit/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/octedit/Makefile b/octedit/Makefile
index 26601c8..4603ef4 100644
--- a/octedit/Makefile
+++ b/octedit/Makefile
@@ -5,10 +5,10 @@ build: octedit.uf2
octedit.uf2: octedit.elf
../elf/elf2uf2 octedit.elf octedit.uf2
-objects = uart.o main.o octedit.o
+objects = setup.o octedit.o uart.o crc.o
octedit.elf: $(objects)
- arm-none-eabi-ld -T pico_persist.ld -o octedit.elf $(objects) ../setup/setup.so
+ arm-none-eabi-ld -T pico_persist.ld -o octedit.elf $(objects)
./checksum_pico_elf.py octedit.elf
$(objects): %.o: %.s