From 261c210c9c4c1e55103a7af31dfcc539c0e0e5cc Mon Sep 17 00:00:00 2001 From: Jacques Comeaux Date: Fri, 19 Jan 2024 16:41:29 -0600 Subject: Add subroutine for printing hexadecimal word --- pico_ram_only.ld | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 pico_ram_only.ld (limited to 'pico_ram_only.ld') 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 -} -- cgit v1.2.3