From f2016e84699c4f8a83e759fecac9e5dacd490a40 Mon Sep 17 00:00:00 2001 From: Oxore Date: Wed, 3 May 2023 01:23:56 +0300 Subject: Initial commit --- _rom.ld | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 _rom.ld (limited to '_rom.ld') diff --git a/_rom.ld b/_rom.ld new file mode 100644 index 0000000..55106be --- /dev/null +++ b/_rom.ld @@ -0,0 +1,15 @@ +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