From 79ff96cb2ffb140863c48803d21d10349881f907 Mon Sep 17 00:00:00 2001 From: Oxore Date: Thu, 4 May 2023 00:16:02 +0300 Subject: Add Readme, move hello world into separate dir --- _rom.ld | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 _rom.ld (limited to '_rom.ld') diff --git a/_rom.ld b/_rom.ld deleted file mode 100644 index 55106be..0000000 --- a/_rom.ld +++ /dev/null @@ -1,15 +0,0 @@ -SECTIONS { - . = ORIGIN(ROM); - .text : { - KEEP(*(.stack)) - KEEP(*(.vectors)) - KEEP(*(.smd_header)) - KEEP(*(.text)) - . = ALIGN(4); - *(.text*) - . = ALIGN(4); - KEEP(*(.rodata)) - *(.rodata*) - . = ALIGN(4); - } >ROM -} -- cgit v1.2.3