From 21a9aa92a7cf8767a0fcb33858546dea744c4071 Mon Sep 17 00:00:00 2001 From: Oxore Date: Mon, 5 Feb 2024 01:20:51 +0300 Subject: Organize source code and tests --- test.ld | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 test.ld (limited to 'test.ld') diff --git a/test.ld b/test.ld deleted file mode 100644 index f939414..0000000 --- a/test.ld +++ /dev/null @@ -1,19 +0,0 @@ -/* SPDX-License-Identifier: Unlicense - */ - -MEMORY { - ROM(rx) : ORIGIN = 0x00000000, LENGTH = 4M -} - -SECTIONS { - . = ORIGIN(ROM); - .text : { - KEEP(*(.text)) - . = ALIGN(2); - *(.text*) - . = ALIGN(2); - KEEP(*(.rodata)) - *(.rodata*) - . = ALIGN(2); - } >ROM -} -- cgit v1.2.3