diff options
author | Jacques Comeaux <jacquesrcomeaux@protonmail.com> | 2024-06-22 17:49:52 -0500 |
---|---|---|
committer | Jacques Comeaux <jacquesrcomeaux@protonmail.com> | 2024-06-22 17:49:52 -0500 |
commit | 0d7ab1ec70914e2945d0f2530f0999ecea8828fd (patch) | |
tree | 97217460aa902eed3bd99fee1bfdc6923cffdf85 /octedit/pico_persist.ld | |
parent | c12b1b99f2e3ab731c483bc93fa21b4763624fac (diff) |
Improve octedit usability
New features:
- Displays current address
- Press 'B' to go back
Diffstat (limited to 'octedit/pico_persist.ld')
-rw-r--r-- | octedit/pico_persist.ld | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/octedit/pico_persist.ld b/octedit/pico_persist.ld index 9c37aba..fd9cf67 100644 --- a/octedit/pico_persist.ld +++ b/octedit/pico_persist.ld @@ -5,8 +5,9 @@ MEMORY { SECTIONS { .text : { - *(.entry); - *(.text); + setup.o(.text); + octedit.o(.text); + uart.o(.text); . = 252; *(.stage_2_crc); } >SRAM AT>FLASH |