diff options
author | Jacques Comeaux <jacquesrcomeaux@protonmail.com> | 2024-01-19 16:41:29 -0600 |
---|---|---|
committer | Jacques Comeaux <jacquesrcomeaux@protonmail.com> | 2024-01-19 16:41:29 -0600 |
commit | 261c210c9c4c1e55103a7af31dfcc539c0e0e5cc (patch) | |
tree | 71840ab97b84dd3f995ea8900b08c98149feac36 /pico_ram_only.ld | |
parent | 473e52cbe7cbee0333b7d97d91c4bbf95c1b3225 (diff) |
Add subroutine for printing hexadecimal word
Diffstat (limited to 'pico_ram_only.ld')
-rw-r--r-- | pico_ram_only.ld | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/pico_ram_only.ld b/pico_ram_only.ld deleted file mode 100644 index eb2450e..0000000 --- a/pico_ram_only.ld +++ /dev/null @@ -1,13 +0,0 @@ -ENTRY(main) - -MEMORY { - FLASH(rx) : ORIGIN = 0x10000000, LENGTH = 2M - SRAM(rwx) : ORIGIN = 0x20000000, LENGTH = 264K -} - -SECTIONS { - .text : { - *(.text) - . = ALIGN(4); - } > SRAM -} |